windows 7 - find (ms-dos command) looking into sub directories files -
i trying use find files contain specific keyword. understanding, find takes in file not directory (that's why giving me error). there way can go through each sub-directories , each , every file execute find command can result of files contains given keyword? (much grep)
so far got this: find \s "keyword" "directory\ *"
error getting:
access denied - directory name
access denied - directory name
. . .
anyone give me hint? current using window 7 right now.
find
not take /s
switch (not \s
- that's directory)
findstr
animal.
about quibble documentation avaliable findstr /?
prompt can target filemask in specified directory specifying \dirname\*
, not in current directory documented. there option run against semicolon-delimiter list of directory names - i've never seen used.
Comments
Post a Comment