bzegrep, bzfgrep, rgrep, zegrep, zgrep: move from linux to common (#8709)

grep alternatives work substantially the same on all major platforms.
This commit is contained in:
dz-at-tc
2022-10-04 00:09:55 -04:00
committed by GitHub
parent 09064cedcf
commit c4221c98dd
5 changed files with 0 additions and 0 deletions

25
pages/common/rgrep.md Normal file
View File

@@ -0,0 +1,25 @@
# rgrep
> Recursively find patterns in files using regular expressions.
> Equivalent to `grep -r`.
> More information: <https://www.gnu.org/software/grep/manual/grep.html>.
- Recursively search for a pattern in the current working directory:
`rgrep "{{search_pattern}}"`
- Recursively search for a case-insensitive pattern in the current working directory:
`rgrep --ignore-case "{{search_pattern}}"`
- Recursively search for an extended regular expression pattern (supports `?`, `+`, `{}`, `()` and `|`) in the current working directory:
`rgrep --extended-regexp "{{search_pattern}}"`
- Recursively search for an exact string (disables regular expressions) in the current working directory:
`rgrep --fixed-strings "{{exact_string}}"`
- Recursively search for a pattern in a specified directory (or file):
`rgrep "{{search_pattern}}" {{path/to/file_or_directory}}`