Forrest logo
back to context overview

bzfgrep

List of commands for bzfgrep:

  • bzfgrep:tldr:2cddc bzfgrep: Search for lines that do not match the list of search strings separated by new lines in a compressed file.
    $ bzfgrep --invert-match "${search_string}" ${filename}
    try on your machine
    explain this command
  • bzfgrep:tldr:5e669 bzfgrep: Search for lines matching the list of search strings separated by new lines in a compressed file (case-insensitive).
    $ bzfgrep --ignore-case "${search_string}" ${filename}
    try on your machine
    explain this command
  • bzfgrep:tldr:8776b bzfgrep: Search for lines matching the list of search strings separated by new lines in a compressed file (case-sensitive).
    $ bzfgrep "${search_string}" ${filename}
    try on your machine
    explain this command
  • bzfgrep:tldr:b4459 bzfgrep: Recursively search files in a bzip2 compressed tar archive for the given list of strings.
    $ bzfgrep --recursive "${search_string}" ${filename}
    try on your machine
    explain this command
  • bzfgrep:tldr:e0c5d bzfgrep: Print file name and line number for each match.
    $ bzfgrep --with-filename --line-number "${search_string}" ${filename}
    try on your machine
    explain this command
  • bzfgrep:tldr:f269f bzfgrep: Search for lines matching a pattern, printing only the matched text.
    $ bzfgrep --only-matching "${search_string}" ${filename}
    try on your machine
    explain this command
back to context overview