Page 1 of 1
How to find files without appointed field across multiple fi
Posted: Mon May 30, 2011 7:39 am
by Hiedi
I want to find files without appointed field in multiple files. For example, I have lots of client information files with $name field accompanied with client name in those files. If there is no $name field in file, there is absolutely no client name information. I want to find those files without $name field across multiple files. What kind of expression shall I use?
Posted: Mon May 30, 2011 11:26 am
by SteveH
See this
earlier post which asked a similar question.
I don't think you can't do this using TextPad.
Posted: Mon May 30, 2011 3:54 pm
by ben_josephs
Thank you, Steve. I'd forgotten about the -L option!
Try this:
grep -L "\$name" *
Posted: Mon May 30, 2011 7:41 pm
by SteveH
There's also a FINDSTR command built into windows that looks like it should be useful (and free) but I couldn't get this to work.
Code: Select all
FINDSTR [/B] [/E] [/L] [/R] [/S] [/I] [/X] [/V] [/N] [/M] [/O] [/P] [/F:file]
[/C:string] [/G:file] [/D:dir list] [/A:color attributes] [/OFF[LINE]]
strings [[drive:][path]filename[ ...]]
/B Matches pattern if at the beginning of a line.
/E Matches pattern if at the end of a line.
/L Uses search strings literally.
/R Uses search strings as regular expressions.
/S Searches for matching files in the current directory and all
subdirectories.
/I Specifies that the search is not to be case-sensitive.
/X Prints lines that match exactly.
/V Prints only lines that do not contain a match.
/N Prints the line number before each line that matches.
/M Prints only the filename if a file contains a match.
/O Prints character offset before each matching line.
/P Skip files with non-printable characters.
/OFF[LINE] Do not skip files with offline attribute set.
/A:attr Specifies color attribute with two hex digits. See "color /?"
/F:file Reads file list from the specified file(/ stands for console).
/C:string Uses specified string as a literal search string.
/G:file Gets search strings from the specified file(/ stands for console).
/D:dir Search a semicolon delimited list of directories
strings Text to be searched for.
[drive:][path]filename
Specifies a file or files to search.
Use spaces to separate multiple search strings unless the argument is prefixed
with /C. For example, 'FINDSTR "hello there" x.y' searches for "hello" or
"there" in file x.y. 'FINDSTR /C:"hello there" x.y' searches for
"hello there" in file x.y.
Regular expression quick reference:
. Wildcard: any character
* Repeat: zero or more occurances of previous character or class
^ Line position: beginning of line
$ Line position: end of line
[class] Character class: any one character in set
[^class] Inverse class: any one character not in set
[x-y] Range: any characters within the specified range
\x Escape: literal use of metacharacter x
\<xyz Word position: beginning of word
xyz\> Word position: end of word
Posted: Tue May 31, 2011 2:15 am
by Hiedi
I am a greenhand about command language. Since TextPad has no such function, I will try to use Excel to get resolved.
I download grey but it fails to run. Actually, it is a zipped file and I have no idea which file I should run.
Thanks