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
bzgrep Archive
Bzgrep Command: Invert Match With Stdin
cat <path/to/bz_compressed_file> | bzgrep -v "<search_pattern>" bzgrep Search
Bzgrep Command: Print Context Around Matches
bzgrep --context 3 "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Print Context Lines Around Match
bzgrep --context 3 "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Print Filename And Line Number
bzgrep -H -n "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Print Filename And Line Number For Matches
bzgrep -H -n "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Print Only Matching Lines
bzgrep -o "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Print Only Matching Text
bzgrep -o "<search_pattern>" <path/to/file> bzgrep Archive
Bzgrep Command: Recursive Search In Tar Archive
bzgrep -r "<search_pattern>" <path/to/tar_file> bzgrep Archive
Bzgrep Command: Recursively Search Pattern In Bzip2 Tar Archive
bzgrep -r "<search_pattern>" <path/to/tar_file> bzgrep Archive
Bzgrep Command: Search Pattern In Bzip2 Compressed File
bzgrep "<search_pattern>" <path/to/file> bzgrep Archive
Bzgrep Command: Search Pattern In Compressed File
bzgrep "<search_pattern>" <path/to/file> bzgrep Archive
Bzgrep Command: Search Stdin For Non Matching Lines
cat <path/to/bz_compressed_file> | bzgrep -v "<search_pattern>" bzgrep Search
Bzgrep Command: Use Extended Regex Case Insensitive
bzgrep -E -i "<search_pattern>" <path/to/file> bzgrep Search
Bzgrep Command: Use Extended Regex Case Insensitive Search
bzgrep -E -i "<search_pattern>" <path/to/file>