find: add page

italian
pxgamer 2018-06-21 13:06:00 +01:00 committed by Agniva De Sarker
parent 31b664ccd8
commit 118004ed76
1 changed files with 19 additions and 0 deletions

19
pages/windows/find.md Normal file
View File

@ -0,0 +1,19 @@
# find
> Find a specified string in one or more files.
- Find lines that contain a specified string:
`find {{string}} {{path/to/file_or_directory}}`
- Display lines that do not contain the specified string:
`find {{string}} {{path/to/file_or_directory}} /v`
- Display the count of lines that contain the specified string:
`find {{string}} {{path/to/file_or_directory}} /c`
- Display line numbers with the list of lines:
`find {{string}} {{path/to/file_or_directory}} /n`