search directory

Search Commands

Search tools, operations, flags, and command strings. Results are capped for Worker performance.

Bzgrep Commands

14 bzgrep entries

Limited to 100 results

Back to all tools
bzgrep

Bzgrep Command: Invert Match With Stdin

cat <path/to/bz_compressed_file> | bzgrep -v "<search_pattern>"
bzgrep

Bzgrep Command: Print Context Around Matches

bzgrep --context 3 "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Print Context Lines Around Match

bzgrep --context 3 "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Print Filename And Line Number

bzgrep -H -n "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Print Filename And Line Number For Matches

bzgrep -H -n "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Print Only Matching Lines

bzgrep -o "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Print Only Matching Text

bzgrep -o "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Recursive Search In Tar Archive

bzgrep -r "<search_pattern>" <path/to/tar_file>
bzgrep

Bzgrep Command: Recursively Search Pattern In Bzip2 Tar Archive

bzgrep -r "<search_pattern>" <path/to/tar_file>
bzgrep

Bzgrep Command: Search Pattern In Bzip2 Compressed File

bzgrep "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Search Pattern In Compressed File

bzgrep "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Search Stdin For Non Matching Lines

cat <path/to/bz_compressed_file> | bzgrep -v "<search_pattern>"
bzgrep

Bzgrep Command: Use Extended Regex Case Insensitive

bzgrep -E -i "<search_pattern>" <path/to/file>
bzgrep

Bzgrep Command: Use Extended Regex Case Insensitive Search

bzgrep -E -i "<search_pattern>" <path/to/file>