Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-16 00:19:59 +00:00
parent d5421f7c01
commit b18a761896
36 changed files with 451 additions and 40 deletions

View File

@@ -20,7 +20,7 @@ source: https://github.com/tldr-pages/tldr.git
`findstr /s "{{string1 string2 ...}}" *`
- Find strings using a case-insensitive search:
- Find strings using a case-[i]nsensitive search:
`findstr /i "{{string1 string2 ...}}" *`
@@ -32,10 +32,10 @@ source: https://github.com/tldr-pages/tldr.git
`findstr /c:"{{string1 string2 ...}}" *.txt`
- Display the line number before each matching line:
- Display the line [n]umber before each matching line:
`findstr /n "{{string1 string2 ...}}" *`
- Display only the filenames that contain a match:
- Display only the filenames that contain a [m]atch:
`findstr /m "{{string1 string2 ...}}" *`