diff --git a/pages/windows/find.md b/pages/windows/find.md index 6f6d9c3da..1a3917284 100644 --- a/pages/windows/find.md +++ b/pages/windows/find.md @@ -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`