
rgrep
List of commands for rgrep:
-
rgrep:tldr:23c9d rgrep: Recursively search for a case-insensitive pattern in the current working directory.$ rgrep --ignore-case "${search_pattern}"try on your machineexplain this command
-
rgrep:tldr:35bcc rgrep: Recursively search for a pattern in the current working directory.$ rgrep "${search_pattern}"try on your machineexplain this command
-
rgrep:tldr:534ba rgrep: Recursively search for an exact string (disables regular expressions) in the current working directory.$ rgrep --fixed-strings "${exact_string}"try on your machineexplain this command
-
rgrep:tldr:6c49b rgrep: Recursively search for a pattern in a specified directory (or file).$ rgrep "${search_pattern}" ${filename_or_directory}try on your machineexplain this command
-
rgrep:tldr:e5174 rgrep: Recursively search for an extended regular expression pattern (supports `?`, `+`, `{}`, `()` and `|`) in the current working directory.$ rgrep --extended-regexp "${search_pattern}"try on your machineexplain this command