ripgrep 14.1.0
Andrew Gallant <jamslam@gmail.com>

ripgrep (rg) recursively searches the current directory for lines matching a regex.
By default, ripgrep will respect gitignore rules and automatically skip hidden
files/directories and binary files.

USAGE:
    rg [OPTIONS] PATTERN [PATH ...]
    rg [OPTIONS] -e PATTERN ... [PATH ...]
    rg [OPTIONS] --files [PATH ...]

ARGS:
    <PATTERN>    A regular expression used for searching.
    <PATH>...    A file or directory to search.

OPTIONS:
    -A, --after-context <NUM>      Show NUM lines after each match.
    -B, --before-context <NUM>     Show NUM lines before each match.
    -C, --context <NUM>            Show NUM lines before and after each match.
        --color <WHEN>             Controls when to use color. [default: auto]
                                   WHEN can be one of never, auto, always, or ansi.
    -e, --regexp <PATTERN>...      A pattern to search for. This option can be
                                   provided multiple times, where all patterns
                                   given are searched.
    -g, --glob <GLOB>...           Include or exclude files and directories for
                                   searching that match the given glob.
    -i, --ignore-case             Case insensitive search.
    -v, --invert-match           Invert matching.
    -w, --word-regexp            Only show matches surrounded by word boundaries.
        --files                   Print each file that would be searched.
    -l, --files-with-matches     Print the paths with at least one match.
    -n, --line-number            Show line numbers (1-based).
    -N, --no-line-number         Suppress line numbers.
        --max-count <NUM>         Limit the number of matching lines per file.
    -j, --threads <NUM>           The approximate number of threads to use.
    -h, --help                   Print help information.
    -V, --version                Print version information.
