From aa5032017027e585c5f41eeabda4a4d01e4989f1 Mon Sep 17 00:00:00 2001 From: NNRepos <45516943+NNRepos@users.noreply.github.com> Date: Sat, 9 Nov 2019 15:37:46 +0200 Subject: [PATCH] findstr: edit-page (#3509) --- pages/windows/findstr.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/windows/findstr.md b/pages/windows/findstr.md index 8e49de492..e35ea4475 100644 --- a/pages/windows/findstr.md +++ b/pages/windows/findstr.md @@ -7,6 +7,10 @@ `findstr "{{query}}" *` +- Find space-separated string(s) in a piped command's output: + +`{{dir}} | findstr "{{query}}"` + - Find space-separated string(s) in all files recur[s]ively: `findstr /s "{{query}}" *` @@ -23,10 +27,6 @@ `findstr /c:"{{query}}" *.txt` -- Find only lines that match the query e[x]actly: - -`findstr /x "{{query}}" *` - - Display the line number before each matching line: `findstr /n "{{query}}" *`