1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:02:09 +02:00

findstr: edit-page (#3509)

This commit is contained in:
NNRepos 2019-11-09 15:37:46 +02:00 committed by Starbeamrainbowlabs
parent 3e6b16bb2d
commit aa50320170

View file

@ -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}}" *`