find (command)
From Wikipedia, the free encyclopedia
| This article needs additional citations for verification. Please help improve this article by adding reliable references. Unsourced material may be challenged and removed. (April 2008) |
In computing, find is a command in the command line interpreters (shells) of DOS, OS/2 and Microsoft Windows. It is used to search for a specific text string in a file or files. The command sends the specified lines the standard ouput device.
It is equivalent to the Unix command grep. The Unix command find performs an entirely different function.
Contents |
[edit] Overview
The find command is filter to find lines in the input data stream that contain or don't contain a specified string and send these to the output data stream.
[edit] Syntax
FIND [/V] [/C] [/N] [/I] "string" [[drive:][path]filename[...]]
Arguments:
"string"This command-line argument specifies the text string to find.[drive:][path]filenameSpecifies a file or files to search.
Flags:
/VDisplays all lines NOT containing the specified string./CDisplays only the count of lines containing the string./NDisplays line numbers with the displayed lines./IIgnores the case of characters when searching for the string.
Note: If a pathname is not specified, FIND searches the text typed at the prompt or piped from another command.
[edit] Example
find "keyword" < inputfilename > outputfilename
[edit] See also
[edit] References
|
|||||||||||||||||||||||||||||

