find: add double quotes in examples (#9048)

This commit is contained in:
Irina
2022-10-16 08:13:21 +03:00
committed by GitHub
parent 20fb714196
commit c1ed5c596e

View File

@@ -5,16 +5,16 @@
- Find lines that contain a specified string:
`find {{string}} {{path/to/file_or_directory}}`
`find "{{string}}" {{path/to/file_or_directory}}`
- Display lines that do not contain the specified string:
`find {{string}} {{path/to/file_or_directory}} /v`
`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`
`find "{{string}}" {{path/to/file_or_directory}} /c`
- Display line numbers with the list of lines:
`find {{string}} {{path/to/file_or_directory}} /n`
`find "{{string}}" {{path/to/file_or_directory}} /n`