find: add double quotes in examples (#9048)

pull/1/head
Irina 2022-10-16 08:13:21 +03:00 committed by GitHub
parent 20fb714196
commit c1ed5c596e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

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`