2016-09-22 17:48:41 -04:00
|
|
|
# NAME
|
|
|
|
|
|
|
|
rg - recursively search current directory for lines matching a pattern
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
rg [*options*] <*pattern*> [*<*path*> ...*]
|
|
|
|
|
Switch from Docopt to Clap.
There were two important reasons for the switch:
1. Performance. Docopt does poorly when the argv becomes large, which is
a reasonable common use case for search tools. (e.g., use with xargs)
2. Better failure modes. Clap knows a lot more about how a particular
argv might be invalid, and can therefore provide much clearer error
messages.
While both were important, (1) made it urgent.
Note that since Clap requires at least Rust 1.11, this will in turn
increase the minimum Rust version supported by ripgrep from Rust 1.9 to
Rust 1.11. It is therefore a breaking change, so the soonest release of
ripgrep with Clap will have to be 0.3.
There is also at least one subtle breaking change in real usage.
Previous to this commit, this used to work:
rg -e -foo
Where this would cause ripgrep to search for the string `-foo`. Clap
currently has problems supporting this use case
(see: https://github.com/kbknapp/clap-rs/issues/742),
but it can be worked around by using this instead:
rg -e [-]foo
or even
rg [-]foo
and this still works:
rg -- -foo
This commit also adds Bash, Fish and PowerShell completion files to the
release, fixes a bug that prevented ripgrep from working on file
paths containing invalid UTF-8 and shows short descriptions in the
output of `-h` but longer descriptions in the output of `--help`.
Fixes #136, Fixes #189, Fixes #210, Fixes #230
2016-11-12 21:48:11 -05:00
|
|
|
rg [*options*] (-e PATTERN | -f FILE) ... [*<*path*> ...*]
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
rg [*options*] --files [*<*path*> ...*]
|
|
|
|
|
|
|
|
rg [*options*] --type-list
|
|
|
|
|
2016-09-24 21:13:24 -04:00
|
|
|
rg [*options*] --help
|
2016-09-22 17:48:41 -04:00
|
|
|
|
2016-09-24 21:13:24 -04:00
|
|
|
rg [*options*] --version
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
2016-11-06 12:21:36 -05:00
|
|
|
ripgrep (rg) combines the usability of The Silver Searcher (an ack clone) with
|
2016-09-22 17:48:41 -04:00
|
|
|
the raw speed of grep.
|
|
|
|
|
2016-11-06 12:21:36 -05:00
|
|
|
Project home page: https://github.com/BurntSushi/ripgrep
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
# COMMON OPTIONS
|
|
|
|
|
|
|
|
-a, --text
|
|
|
|
: Search binary files as if they were text.
|
|
|
|
|
|
|
|
-c, --count
|
|
|
|
: Only show count of line matches for each file.
|
|
|
|
|
|
|
|
--color *WHEN*
|
|
|
|
: Whether to use coloring in match. Valid values are never, always or auto.
|
|
|
|
[default: auto]
|
|
|
|
|
|
|
|
-e, --regexp *PATTERN* ...
|
|
|
|
: Use PATTERN to search. This option can be provided multiple times, where all
|
2016-11-06 12:10:27 -05:00
|
|
|
patterns given are searched. This is also useful when searching for patterns
|
|
|
|
that start with a dash.
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
-F, --fixed-strings
|
|
|
|
: Treat the pattern as a literal string instead of a regular expression.
|
|
|
|
|
|
|
|
-g, --glob *GLOB* ...
|
|
|
|
: Include or exclude files for searching that match the given glob. This always
|
|
|
|
overrides any other ignore logic. Multiple glob flags may be used. Globbing
|
|
|
|
rules match .gitignore globs. Precede a glob with a '!' to exclude it.
|
|
|
|
|
|
|
|
-h, --help
|
|
|
|
: Show this usage message.
|
|
|
|
|
|
|
|
-i, --ignore-case
|
2016-09-28 16:30:57 -04:00
|
|
|
: Case insensitive search. Overridden by --case-sensitive.
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
-n, --line-number
|
|
|
|
: Show line numbers (1-based). This is enabled by default at a tty.
|
|
|
|
|
|
|
|
-N, --no-line-number
|
|
|
|
: Suppress line numbers.
|
|
|
|
|
|
|
|
-q, --quiet
|
2016-09-25 15:01:27 -04:00
|
|
|
: Do not print anything to stdout. If a match is found in a file, stop
|
|
|
|
searching that file.
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
-t, --type *TYPE* ...
|
|
|
|
: Only search files matching TYPE. Multiple type flags may be provided. Use the
|
|
|
|
--type-list flag to list all available types.
|
|
|
|
|
|
|
|
-T, --type-not *TYPE* ...
|
|
|
|
: Do not search files matching TYPE. Multiple not-type flags may be provided.
|
|
|
|
|
|
|
|
-u, --unrestricted ...
|
|
|
|
: Reduce the level of 'smart' searching. A single -u doesn't respect .gitignore
|
|
|
|
(etc.) files. Two -u flags will search hidden files and directories. Three
|
|
|
|
-u flags will search binary files. -uu is equivalent to grep -r, and -uuu is
|
|
|
|
equivalent to grep -a -r.
|
|
|
|
|
|
|
|
-v, --invert-match
|
|
|
|
: Invert matching.
|
|
|
|
|
|
|
|
-w, --word-regexp
|
|
|
|
: Only show matches surrounded by word boundaries. This is equivalent to
|
|
|
|
putting \\b before and after the search pattern.
|
|
|
|
|
|
|
|
# LESS COMMON 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.
|
|
|
|
|
Completely re-work colored output and tty handling.
This commit completely guts all of the color handling code and replaces
most of it with two new crates: wincolor and termcolor. wincolor
provides a simple API to coloring using the Windows console and
termcolor provides a platform independent coloring API tuned for
multithreaded command line programs. This required a lot more
flexibility than what the `term` crate provided, so it was dropped.
We instead switch to writing ANSI escape sequences directly and ignore
the TERMINFO database.
In addition to fixing several bugs, this commit also permits end users
to customize colors to a certain extent. For example, this command will
set the match color to magenta and the line number background to yellow:
rg --colors 'match:fg:magenta' --colors 'line:bg:yellow' foo
For tty handling, we've adopted a hack from `git` to do tty detection in
MSYS/mintty terminals. As a result, ripgrep should get both color
detection and piping correct on Windows regardless of which terminal you
use.
Finally, switch to line buffering. Performance doesn't seem to be
impacted and it's an otherwise more user friendly option.
Fixes #37, Fixes #51, Fixes #94, Fixes #117, Fixes #182, Fixes #231
2016-11-20 11:14:52 -05:00
|
|
|
--colors *SPEC* ...
|
|
|
|
: This flag specifies color settings for use in the output. This flag may be
|
|
|
|
provided multiple times. Settings are applied iteratively. Colors are limited
|
|
|
|
to one of eight choices: red, blue, green, cyan, magenta, yellow, white and
|
|
|
|
black. Styles are limited to either nobold or bold.
|
|
|
|
|
|
|
|
The format of the flag is {type}:{attribute}:{value}. {type} should be one
|
|
|
|
of path, line or match. {attribute} can be fg, bg or style. Value is either
|
|
|
|
a color (for fg and bg) or a text style. A special format, {type}:none,
|
|
|
|
will clear all color settings for {type}.
|
|
|
|
|
|
|
|
For example, the following command will change the match color to magenta
|
|
|
|
and the background color for line numbers to yellow:
|
|
|
|
|
|
|
|
rg --colors 'match:fg:magenta' --colors 'line:bg:yellow' foo.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
--column
|
|
|
|
: Show column numbers (1 based) in output. This only shows the column
|
|
|
|
numbers for the first match on each line. Note that this doesn't try
|
|
|
|
to account for Unicode. One byte is equal to one column.
|
|
|
|
|
|
|
|
--context-separator *ARG*
|
|
|
|
: The string to use when separating non-continuous context lines. Escape
|
|
|
|
sequences may be used. [default: --]
|
|
|
|
|
|
|
|
--debug
|
|
|
|
: Show debug messages.
|
|
|
|
|
Switch from Docopt to Clap.
There were two important reasons for the switch:
1. Performance. Docopt does poorly when the argv becomes large, which is
a reasonable common use case for search tools. (e.g., use with xargs)
2. Better failure modes. Clap knows a lot more about how a particular
argv might be invalid, and can therefore provide much clearer error
messages.
While both were important, (1) made it urgent.
Note that since Clap requires at least Rust 1.11, this will in turn
increase the minimum Rust version supported by ripgrep from Rust 1.9 to
Rust 1.11. It is therefore a breaking change, so the soonest release of
ripgrep with Clap will have to be 0.3.
There is also at least one subtle breaking change in real usage.
Previous to this commit, this used to work:
rg -e -foo
Where this would cause ripgrep to search for the string `-foo`. Clap
currently has problems supporting this use case
(see: https://github.com/kbknapp/clap-rs/issues/742),
but it can be worked around by using this instead:
rg -e [-]foo
or even
rg [-]foo
and this still works:
rg -- -foo
This commit also adds Bash, Fish and PowerShell completion files to the
release, fixes a bug that prevented ripgrep from working on file
paths containing invalid UTF-8 and shows short descriptions in the
output of `-h` but longer descriptions in the output of `--help`.
Fixes #136, Fixes #189, Fixes #210, Fixes #230
2016-11-12 21:48:11 -05:00
|
|
|
-f, --file FILE ...
|
|
|
|
: Search for patterns from the given file, with one pattern per line. When this
|
|
|
|
flag is used or multiple times or in combination with the -e/--regexp flag,
|
|
|
|
then all patterns provided are searched. Empty pattern lines will match all
|
|
|
|
input lines, and the newline is not counted as part of the pattern.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
--files
|
|
|
|
: Print each file that would be searched (but don't search).
|
|
|
|
|
2016-09-25 18:32:41 -04:00
|
|
|
-l, --files-with-matches
|
|
|
|
: Only show path of each file with matches.
|
|
|
|
|
2016-11-19 20:15:41 -05:00
|
|
|
--files-without-match
|
2016-11-19 21:48:59 -02:00
|
|
|
: Only show path of each file with no matches.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
-H, --with-filename
|
|
|
|
: Prefix each match with the file name that contains it. This is the
|
|
|
|
default when more than one file is searched.
|
|
|
|
|
2016-09-24 19:23:19 -04:00
|
|
|
--no-filename
|
|
|
|
: Never show the filename for a match. This is the default when
|
|
|
|
one file is searched.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
--heading
|
2016-11-28 17:39:45 -05:00
|
|
|
: Show the file name above clusters of matches from each file instead of
|
|
|
|
showing the file name for every match. This is the default mode at a tty.
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
--no-heading
|
2016-11-28 17:39:45 -05:00
|
|
|
: Don't group matches by each file. If -H/--with-filename is enabled, then
|
|
|
|
file names will be shown for every line matched. This is the default more
|
|
|
|
when not at a tty.
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
--hidden
|
|
|
|
: Search hidden directories and files. (Hidden directories and files are
|
|
|
|
skipped by default.)
|
|
|
|
|
Switch from Docopt to Clap.
There were two important reasons for the switch:
1. Performance. Docopt does poorly when the argv becomes large, which is
a reasonable common use case for search tools. (e.g., use with xargs)
2. Better failure modes. Clap knows a lot more about how a particular
argv might be invalid, and can therefore provide much clearer error
messages.
While both were important, (1) made it urgent.
Note that since Clap requires at least Rust 1.11, this will in turn
increase the minimum Rust version supported by ripgrep from Rust 1.9 to
Rust 1.11. It is therefore a breaking change, so the soonest release of
ripgrep with Clap will have to be 0.3.
There is also at least one subtle breaking change in real usage.
Previous to this commit, this used to work:
rg -e -foo
Where this would cause ripgrep to search for the string `-foo`. Clap
currently has problems supporting this use case
(see: https://github.com/kbknapp/clap-rs/issues/742),
but it can be worked around by using this instead:
rg -e [-]foo
or even
rg [-]foo
and this still works:
rg -- -foo
This commit also adds Bash, Fish and PowerShell completion files to the
release, fixes a bug that prevented ripgrep from working on file
paths containing invalid UTF-8 and shows short descriptions in the
output of `-h` but longer descriptions in the output of `--help`.
Fixes #136, Fixes #189, Fixes #210, Fixes #230
2016-11-12 21:48:11 -05:00
|
|
|
--ignore-file FILE ...
|
|
|
|
: Specify additional ignore files for filtering file paths.
|
|
|
|
Ignore files should be in the gitignore format and are matched
|
|
|
|
relative to the current working directory. These ignore files
|
|
|
|
have lower precedence than all other ignore files. When
|
|
|
|
specifying multiple ignore files, earlier files have lower
|
|
|
|
precedence than later files.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
-L, --follow
|
|
|
|
: Follow symlinks.
|
|
|
|
|
2016-11-06 13:09:53 -05:00
|
|
|
-m, --max-count NUM
|
|
|
|
: Limit the number of matching lines per file searched to NUM.
|
|
|
|
|
2016-09-26 20:56:15 -07:00
|
|
|
--maxdepth *NUM*
|
|
|
|
: Descend at most NUM directories below the command line arguments.
|
|
|
|
A value of zero searches only the starting-points themselves.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
--mmap
|
|
|
|
: Search using memory maps when possible. This is enabled by default
|
|
|
|
when ripgrep thinks it will be faster. (Note that mmap searching
|
|
|
|
doesn't currently support the various context related options.)
|
|
|
|
|
2016-11-06 14:36:08 -05:00
|
|
|
--no-messages
|
|
|
|
: Suppress all error messages.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
--no-mmap
|
|
|
|
: Never use memory maps, even when they might be faster.
|
|
|
|
|
|
|
|
--no-ignore
|
2016-09-23 22:44:17 -04:00
|
|
|
: Don't respect ignore files (.gitignore, .ignore, etc.)
|
2016-09-22 17:48:41 -04:00
|
|
|
This implies --no-ignore-parent.
|
|
|
|
|
|
|
|
--no-ignore-parent
|
|
|
|
: Don't respect ignore files in parent directories.
|
|
|
|
|
2016-09-24 21:31:24 -04:00
|
|
|
--no-ignore-vcs
|
|
|
|
: Don't respect version control ignore files (e.g., .gitignore).
|
|
|
|
Note that .ignore files will continue to be respected.
|
|
|
|
|
2016-09-26 19:21:17 -04:00
|
|
|
--null
|
|
|
|
: Whenever a file name is printed, follow it with a NUL byte.
|
|
|
|
This includes printing filenames before matches, and when printing
|
|
|
|
a list of matching files such as with --count, --files-with-matches
|
|
|
|
and --files.
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
-p, --pretty
|
|
|
|
: Alias for --color=always --heading -n.
|
|
|
|
|
2016-10-10 20:19:45 -04:00
|
|
|
-r, --replace *ARG*
|
|
|
|
: Replace every match with the string given when printing search results.
|
|
|
|
Neither this flag nor any other flag will modify your files.
|
|
|
|
|
|
|
|
Capture group indices (e.g., $5) and names (e.g., $foo) are supported
|
|
|
|
in the replacement string.
|
|
|
|
|
2016-09-28 16:30:57 -04:00
|
|
|
-s, --case-sensitive
|
|
|
|
: Search case sensitively. This overrides --ignore-case and --smart-case.
|
|
|
|
|
2016-09-24 21:51:04 -04:00
|
|
|
-S, --smart-case
|
|
|
|
: Search case insensitively if the pattern is all lowercase.
|
2016-09-28 16:30:57 -04:00
|
|
|
Search case sensitively otherwise. This is overridden by either
|
|
|
|
--case-sensitive or --ignore-case.
|
2016-09-24 21:51:04 -04:00
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
-j, --threads *ARG*
|
2016-10-11 17:32:51 -04:00
|
|
|
: The number of threads to use. 0 means use the number of logical CPUs
|
2016-09-22 17:48:41 -04:00
|
|
|
(capped at 6). [default: 0]
|
|
|
|
|
|
|
|
--version
|
|
|
|
: Show the version number of ripgrep and exit.
|
|
|
|
|
2016-09-22 21:32:38 -04:00
|
|
|
--vimgrep
|
|
|
|
: Show results with every match on its own line, including line
|
|
|
|
numbers and column numbers. (With this option, a line with more
|
|
|
|
than one match of the regex will be printed more than once.)
|
|
|
|
|
2016-09-22 17:48:41 -04:00
|
|
|
# FILE TYPE MANAGEMENT OPTIONS
|
|
|
|
|
|
|
|
--type-list
|
|
|
|
: Show all supported file types and their associated globs.
|
|
|
|
|
|
|
|
--type-add *ARG* ...
|
2016-09-25 14:36:53 -04:00
|
|
|
: Add a new glob for a particular file type. Only one glob can be added
|
|
|
|
at a time. Multiple --type-add flags can be provided. Unless --type-clear
|
|
|
|
is used, globs are added to any existing globs inside of ripgrep. Note that
|
2016-10-10 20:19:45 -04:00
|
|
|
this must be passed to every invocation of rg. Type settings are NOT
|
|
|
|
persisted.
|
2016-09-24 18:55:48 -04:00
|
|
|
|
2016-10-10 20:19:45 -04:00
|
|
|
Example: `rg --type-add 'foo:*.foo' -tfoo PATTERN`
|
2016-09-22 17:48:41 -04:00
|
|
|
|
|
|
|
--type-clear *TYPE* ...
|
2016-09-24 18:55:48 -04:00
|
|
|
: Clear the file type globs previously defined for TYPE. This only clears
|
|
|
|
the default type definitions that are found inside of ripgrep. Note
|
|
|
|
that this must be passed to every invocation of rg.
|