Find extended regular expression patterns in
bzip2compressed files usingegrep. More information: https://manned.org/bzegrep.
?, +, {}, () and |) in a compressed file (case-sensitive):bzegrep "{{search_pattern}}" {{path/to/file}}
?, +, {}, () and |) in a compressed file (case-insensitive):bzegrep {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}
bzegrep {{[-v|--invert-match]}} "{{search_pattern}}" {{path/to/file}}
bzegrep {{[-H|--with-filename]}} {{[-n|--line-number]}} "{{search_pattern}}" {{path/to/file}}
bzegrep {{[-o|--only-matching]}} "{{search_pattern}}" {{path/to/file}}
bzegrep {{[-r|--recursive]}} "{{search_pattern}}" {{path/to/file}}