RG(1)                            ripgrep 14.1.0                            RG(1)

NAME
       rg - recursively search the current directory for lines matching a
       pattern

SYNOPSIS
       rg [OPTIONS] PATTERN [PATH...]

       rg [OPTIONS] -e PATTERN... [PATH...]

DESCRIPTION
       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.

OPTIONS
       -A, --after-context <NUM>
              Show NUM lines after each match. This overrides the --context
              and --passthru flags.

       -i, --ignore-case
              When this flag is provided, all patterns will be searched case
              insensitively. The search will be case sensitive by default
              unless one letter in the pattern is capitalized.

       -e, --regexp <PATTERN>
              A pattern to search for. This option can be provided multiple
              times, where all patterns given are searched, in addition to any
              patterns provided by -f/--file. Lines matching at least one of
              the provided patterns are printed.

       -j, --threads <NUM>
              The approximate number of threads to use. A value of 0 (which is
              the default) causes ripgrep to choose the thread count using
              heuristics.

       --color <WHEN>
              This flag controls when to use colors. The default setting is
              auto, which means ripgrep will try to guess when to use colors.
              The possible values for this flag are: never, auto, always,
              ansi.

SEE ALSO
       grep(1)

AUTHOR
       Andrew Gallant <jamslam@gmail.com>
