Update cheatsheets

This commit is contained in:
ivuorinen
2025-05-15 00:18:48 +00:00
parent 4cc9cba549
commit 704fdbe29d
8 changed files with 90 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ source: https://github.com/tldr-pages/tldr.git
- Search for a pattern in all files recursively in a directory, showing line numbers of matches, ignoring binary files:
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{search_pattern}}" {{path/to/directory}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} {{[-I|--binary-files=without-match]}} "{{search_pattern}}" {{path/to/directory}}`
- Use extended regular expressions (supports `?`, `+`, `{}`, `()`, and `|`), in case-insensitive mode: