diff --git a/pages/windows/findstr.md b/pages/windows/findstr.md index 8e49de492b..e35ea44757 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}}" *`