
bzegrep
List of commands for bzegrep:
-
bzegrep:tldr:0a9b5 bzegrep: Recursively search files in a bzip2 compressed tar archive for a pattern.$ bzegrep --recursive "${search_pattern}" ${filename}try on your machineexplain this command
-
bzegrep:tldr:3f05c bzegrep: Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-sensitive).$ bzegrep "${search_pattern}" ${filename}try on your machineexplain this command
-
bzegrep:tldr:4b4e4 bzegrep: Print file name and line number for each match.$ bzegrep --with-filename --line-number "${search_pattern}" ${filename}try on your machineexplain this command
-
bzegrep:tldr:7e9f5 bzegrep: Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-insensitive).$ bzegrep --ignore-case "${search_pattern}" ${filename}try on your machineexplain this command
-
bzegrep:tldr:a2acf bzegrep: Search for lines that do not match a pattern.$ bzegrep --invert-match "${search_pattern}" ${filename}try on your machineexplain this command
-
bzegrep:tldr:f5429 bzegrep: Search for lines matching a pattern, printing only the matched text.$ bzegrep --only-matching "${search_pattern}" ${filename}try on your machineexplain this command