From c1ed5c596ec912c012acbb3bf0b79622808a71e0 Mon Sep 17 00:00:00 2001 From: Irina <91758930+iridacea@users.noreply.github.com> Date: Sun, 16 Oct 2022 08:13:21 +0300 Subject: [PATCH] find: add double quotes in examples (#9048) --- pages/windows/find.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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`