Options (7)
-r, --recursivebooleanRecursively search files in a bzip2 compressed `.tar` archive for a pattern
bzgrep {{[-r|--recursive]}} "{{search_pattern}}" {{path/to/tar_file}}-H, --with-filenamebooleanPrint file name and line number for each match
bzgrep {{[-H|--with-filename]}} {{[-n|--line-number]}} "{{search_pattern}}" {{path/to/file}}-n, --line-numberbooleanPrint file name and line number for each match
bzgrep {{[-H|--with-filename]}} {{[-n|--line-number]}} "{{search_pattern}}" {{path/to/file}}-o, --only-matchingbooleanSearch for lines matching a pattern, printing only the matched text
bzgrep {{[-o|--only-matching]}} "{{search_pattern}}" {{path/to/file}}-v, --invert-matchbooleanSearch `stdin` for lines that do not match a pattern
cat {{path/to/bz_compressed_file}} | bzgrep {{[-v|--invert-match]}} "{{search_pattern}}"-E, --extended-regexpbooleanUse extended `regex` (supports `?`, `+`, `{}`, `()`, and `|`), in case-insensitive mode
bzgrep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}-i, --ignore-casebooleanUse extended `regex` (supports `?`, `+`, `{}`, `()`, and `|`), in case-insensitive mode
bzgrep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}Examples (7)
Search for a pattern within a compressed file
bzgrep "search_pattern" path/to/fileRecursively search files in a bzip2 compressed `.tar` archive for a pattern
bzgrep [-r|--recursive] "search_pattern" path/to/tar_filePrint 3 lines of [C]ontext around, [B]efore, or [A]fter each match
bzgrep --context|--before-context|--after-context 3 "search_pattern" path/to/filePrint file name and line number for each match
bzgrep [-H|--with-filename] [-n|--line-number] "search_pattern" path/to/fileSearch for lines matching a pattern, printing only the matched text
bzgrep [-o|--only-matching] "search_pattern" path/to/fileSearch `stdin` for lines that do not match a pattern
Use extended `regex` (supports `?`, `+`, `{}`, `()`, and `|`), in case-insensitive mode
bzgrep [-E|--extended-regexp] [-i|--ignore-case] "search_pattern" path/to/file