-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrg.1.en.gz
More file actions
1379 lines (1379 loc) · 55.3 KB
/
Copy pathrg.1.en.gz
File metadata and controls
1379 lines (1379 loc) · 55.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'\" t
.\" Title: rg
.\" Author: [see the "AUTHORS" section]
.\" Generator: DocBook XSL Stylesheets v1.79.1 <http://docbook.sf.net/>
.\" Date: 12/01/2019
.\" Manual: \ \&
.\" Source: \ \&
.\" Language: English
.\"
.TH "RG" "1" "12/01/2019" "\ \&" "\ \&"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
rg \- recursively search current directory for lines matching a pattern
.SH "SYNOPSIS"
.sp
\fBrg\fR [\fIOPTIONS\fR] \fIPATTERN\fR [\fIPATH\fR\&...]
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-e\fR \fIPATTERN\fR\&... [\fIPATH\fR\&...]
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-f\fR \fIPATTERNFILE\fR\&... [\fIPATH\fR\&...]
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-\-files\fR [\fIPATH\fR\&...]
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-\-type\-list\fR
.sp
\fBcommand\fR | \fBrg\fR [\fIOPTIONS\fR] \fIPATTERN\fR
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-\-help\fR
.sp
\fBrg\fR [\fIOPTIONS\fR] \fB\-\-version\fR
.SH "DESCRIPTION"
.sp
ripgrep (rg) recursively searches your current directory for a regex pattern\&. By default, ripgrep will respect your \&.gitignore and automatically skip hidden files/directories and binary files\&.
.sp
ripgrep\(cqs default regex engine uses finite automata and guarantees linear time searching\&. Because of this, features like backreferences and arbitrary look\-around are not supported\&. However, if ripgrep is built with PCRE2, then the \fB\-\-pcre2\fR flag can be used to enable backreferences and look\-around\&.
.sp
ripgrep supports configuration files\&. Set \fBRIPGREP_CONFIG_PATH\fR to a configuration file\&. The file can specify one shell argument per line\&. Lines starting with \fB#\fR are ignored\&. For more details, see the man page or the \fBREADME\fR\&.
.sp
Tip: to disable all smart filtering and make ripgrep behave a bit more like classical grep, use \fBrg \-uuu\fR\&.
.SH "REGEX SYNTAX"
.sp
ripgrep uses Rust\(cqs regex engine by default, which documents its syntax: https://docs\&.rs/regex/*/regex/#syntax
.sp
ripgrep uses byte\-oriented regexes, which has some additional documentation: https://docs\&.rs/regex/*/regex/bytes/index\&.html#syntax
.sp
To a first approximation, ripgrep uses Perl\-like regexes without look\-around or backreferences\&. This makes them very similar to the "extended" (ERE) regular expressions supported by \fBegrep\fR, but with a few additional features like Unicode character classes\&.
.sp
If you\(cqre using ripgrep with the \fB\-\-pcre2\fR flag, then please consult https://www\&.pcre\&.org or the PCRE2 man pages for documentation on the supported syntax\&.
.SH "POSITIONAL ARGUMENTS"
.PP
\fIPATTERN\fR
.RS 4
A regular expression used for searching\&. To match a pattern beginning with a dash, use the \-e/\-\-regexp option\&.
.RE
.PP
\fIPATH\fR
.RS 4
A file or directory to search\&. Directories are searched recursively\&. Paths specified explicitly on the command line override glob and ignore rules\&.
.RE
.SH "OPTIONS"
.sp
Note that for many options, there exist flags to disable them\&. In some cases, those flags are not listed in a first class way below\&. For example, the \fB\-\-column\fR flag (listed below) enables column numbers in ripgrep\(cqs output, but the \fB\-\-no\-column\fR flag (not listed below) disables them\&. The reverse can also exist\&. For example, the \fB\-\-no\-ignore\fR flag (listed below) disables ripgrep\(cqs \fBgitignore\fR logic, but the \fB\-\-ignore\fR flag (not listed below) enables it\&. These flags are useful for overriding a ripgrep configuration file on the command line\&. Each flag\(cqs documentation notes whether an inverted flag exists\&. In all cases, the flag specified last takes precedence\&.
.PP
\fB\-A, \-\-after\-context\fR \fINUM\fR
.RS 4
Show NUM lines after each match\&.
.sp
This overrides the \-\-context flag\&.
.RE
.PP
\fB\-\-auto\-hybrid\-regex\fR
.RS 4
When this flag is used, ripgrep will dynamically choose between supported regex engines depending on the features used in a pattern\&. When ripgrep chooses a regex engine, it applies that choice for every regex provided to ripgrep (e\&.g\&., via multiple \-e/\-\-regexp or \-f/\-\-file flags)\&.
.sp
As an example of how this flag might behave, ripgrep will attempt to use its default finite automata based regex engine whenever the pattern can be successfully compiled with that regex engine\&. If PCRE2 is enabled and if the pattern given could not be compiled with the default regex engine, then PCRE2 will be automatically used for searching\&. If PCRE2 isn\(cqt available, then this flag has no effect because there is only one regex engine to choose from\&.
.sp
In the future, ripgrep may adjust its heuristics for how it decides which regex engine to use\&. In general, the heuristics will be limited to a static analysis of the patterns, and not to any specific runtime behavior observed while searching files\&.
.sp
The primary downside of using this flag is that it may not always be obvious which regex engine ripgrep uses, and thus, the match semantics or performance profile of ripgrep may subtly and unexpectedly change\&. However, in many cases, all regex engines will agree on what constitutes a match and it can be nice to transparently support more advanced regex features like look\-around and backreferences without explicitly needing to enable them\&.
.sp
This flag can be disabled with \-\-no\-auto\-hybrid\-regex\&.
.RE
.PP
\fB\-B, \-\-before\-context\fR \fINUM\fR
.RS 4
Show NUM lines before each match\&.
.sp
This overrides the \-\-context flag\&.
.RE
.PP
\fB\-\-binary\fR
.RS 4
Enabling this flag will cause ripgrep to search binary files\&. By default, ripgrep attempts to automatically skip binary files in order to improve the relevance of results and make the search faster\&.
.sp
Binary files are heuristically detected based on whether they contain a NUL byte or not\&. By default (without this flag set), once a NUL byte is seen, ripgrep will stop searching the file\&. Usually, NUL bytes occur in the beginning of most binary files\&. If a NUL byte occurs after a match, then ripgrep will still stop searching the rest of the file, but a warning will be printed\&.
.sp
In contrast, when this flag is provided, ripgrep will continue searching a file even if a NUL byte is found\&. In particular, if a NUL byte is found then ripgrep will continue searching until either a match is found or the end of the file is reached, whichever comes sooner\&. If a match is found, then ripgrep will stop and print a warning saying that the search stopped prematurely\&.
.sp
If you want ripgrep to search a file without any special NUL byte handling at all (and potentially print binary data to stdout), then you should use the
\fI\-a/\-\-text\fR
flag\&.
.sp
The
\fI\-\-binary\fR
flag is a flag for controlling ripgrep\(cqs automatic filtering mechanism\&. As such, it does not need to be used when searching a file explicitly or when searching stdin\&. That is, it is only applicable when recursively searching a directory\&.
.sp
Note that when the
\fI\-u/\-\-unrestricted\fR
flag is provided for a third time, then this flag is automatically enabled\&.
.sp
This flag can be disabled with
\fI\-\-no\-binary\fR\&. It overrides the
\fI\-a/\-\-text\fR
flag\&.
.RE
.PP
\fB\-\-block\-buffered\fR
.RS 4
When enabled, ripgrep will use block buffering\&. That is, whenever a matching line is found, it will be written to an in\-memory buffer and will not be written to stdout until the buffer reaches a certain size\&. This is the default when ripgrep\(cqs stdout is redirected to a pipeline or a file\&. When ripgrep\(cqs stdout is connected to a terminal, line buffering will be used\&. Forcing block buffering can be useful when dumping a large amount of contents to a terminal\&.
.sp
Forceful block buffering can be disabled with \-\-no\-block\-buffered\&. Note that using \-\-no\-block\-buffered causes ripgrep to revert to its default behavior of automatically detecting the buffering strategy\&. To force line buffering, use the \-\-line\-buffered flag\&.
.RE
.PP
\fB\-b, \-\-byte\-offset\fR
.RS 4
Print the 0\-based byte offset within the input file before each line of output\&. If \-o (\-\-only\-matching) is specified, print the offset of the matching part itself\&.
.sp
If ripgrep does transcoding, then the byte offset is in terms of the the result of transcoding and not the original data\&. This applies similarly to another transformation on the source, such as decompression or a \-\-pre filter\&. Note that when the PCRE2 regex engine is used, then UTF\-8 transcoding is done by default\&.
.RE
.PP
\fB\-s, \-\-case\-sensitive\fR
.RS 4
Search case sensitively\&.
.sp
This overrides the \-i/\-\-ignore\-case and \-S/\-\-smart\-case flags\&.
.RE
.PP
\fB\-\-color\fR \fIWHEN\fR
.RS 4
This flag controls when to use colors\&. The default setting is
\fIauto\fR, which means ripgrep will try to guess when to use colors\&. For example, if ripgrep is printing to a terminal, then it will use colors, but if it is redirected to a file or a pipe, then it will suppress color output\&. ripgrep will suppress color output in some other circumstances as well\&. For example, if the TERM environment variable is not set or set to
\fIdumb\fR, then ripgrep will not use colors\&.
.sp
The possible values for this flag are:
.sp
.if n \{\
.RS 4
.\}
.nf
never Colors will never be used\&.
auto The default\&. ripgrep tries to be smart\&.
always Colors will always be used regardless of where output is sent\&.
ansi Like \*(Aqalways\*(Aq, but emits ANSI escapes (even in a Windows console)\&.
.fi
.if n \{\
.RE
.\}
.sp
When the \-\-vimgrep flag is given to ripgrep, then the default value for the \-\-color flag changes to
\fInever\fR\&.
.RE
.PP
\fB\-\-colors\fR \fICOLOR_SPEC\fR \&...
.RS 4
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 nobold, bold, nointense, intense, nounderline or underline\&.
.sp
The format of the flag is
\fI{type}:{attribute}:{value}\fR\&.
\fI{type}\fR
should be one of path, line, column or match\&.
\fI{attribute}\fR
can be fg, bg or style\&.
\fI{value}\fR
is either a color (for fg and bg) or a text style\&. A special format,
\fI{type}:none\fR, will clear all color settings for
\fI{type}\fR\&.
.sp
For example, the following command will change the match color to magenta and the background color for line numbers to yellow:
.sp
.if n \{\
.RS 4
.\}
.nf
rg \-\-colors \*(Aqmatch:fg:magenta\*(Aq \-\-colors \*(Aqline:bg:yellow\*(Aq foo\&.
.fi
.if n \{\
.RE
.\}
.sp
Extended colors can be used for
\fI{value}\fR
when the terminal supports ANSI color sequences\&. These are specified as either
\fIx\fR
(256\-color) or
\fIx,x,x\fR
(24\-bit truecolor) where x is a number between 0 and 255 inclusive\&. x may be given as a normal decimal number or a hexadecimal number, which is prefixed by
0x\&.
.sp
For example, the following command will change the match background color to that represented by the rgb value (0,128,255):
.sp
.if n \{\
.RS 4
.\}
.nf
rg \-\-colors \*(Aqmatch:bg:0,128,255\*(Aq
.fi
.if n \{\
.RE
.\}
.sp
or, equivalently,
.sp
.if n \{\
.RS 4
.\}
.nf
rg \-\-colors \*(Aqmatch:bg:0x0,0x80,0xFF\*(Aq
.fi
.if n \{\
.RE
.\}
.sp
Note that the the intense and nointense style flags will have no effect when used alongside these extended color codes\&.
.RE
.PP
\fB\-\-column\fR
.RS 4
Show column numbers (1\-based)\&. This only shows the column numbers for the first match on each line\&. This does not try to account for Unicode\&. One byte is equal to one column\&. This implies \-\-line\-number\&.
.sp
This flag can be disabled with \-\-no\-column\&.
.RE
.PP
\fB\-C, \-\-context\fR \fINUM\fR
.RS 4
Show NUM lines before and after each match\&. This is equivalent to providing both the \-B/\-\-before\-context and \-A/\-\-after\-context flags with the same value\&.
.sp
This overrides both the \-B/\-\-before\-context and \-A/\-\-after\-context flags\&.
.RE
.PP
\fB\-\-context\-separator\fR \fISEPARATOR\fR
.RS 4
The string used to separate non\-contiguous context lines in the output\&. Escape sequences like \ex7F or \et may be used\&. The default value is \-\-\&.
.RE
.PP
\fB\-c, \-\-count\fR
.RS 4
This flag suppresses normal output and shows the number of lines that match the given patterns for each file searched\&. Each file containing a match has its path and count printed on each line\&. Note that this reports the number of lines that match and not the total number of matches\&.
.sp
If only one file is given to ripgrep, then only the count is printed if there is a match\&. The \-\-with\-filename flag can be used to force printing the file path in this case\&.
.sp
This overrides the \-\-count\-matches flag\&. Note that when \-\-count is combined with \-\-only\-matching, then ripgrep behaves as if \-\-count\-matches was given\&.
.RE
.PP
\fB\-\-count\-matches\fR
.RS 4
This flag suppresses normal output and shows the number of individual matches of the given patterns for each file searched\&. Each file containing matches has its path and match count printed on each line\&. Note that this reports the total number of individual matches and not the number of lines that match\&.
.sp
If only one file is given to ripgrep, then only the count is printed if there is a match\&. The \-\-with\-filename flag can be used to force printing the file path in this case\&.
.sp
This overrides the \-\-count flag\&. Note that when \-\-count is combined with \-\-only\-matching, then ripgrep behaves as if \-\-count\-matches was given\&.
.RE
.PP
\fB\-\-crlf\fR
.RS 4
When enabled, ripgrep will treat CRLF (\fI\er\en\fR) as a line terminator instead of just
\fI\en\fR\&.
.sp
Principally, this permits
\fI$\fR
in regex patterns to match just before CRLF instead of just before LF\&. The underlying regex engine may not support this natively, so ripgrep will translate all instances of
\fI$\fR
to
\fI(?:\er??$)\fR\&. This may produce slightly different than desired match offsets\&. It is intended as a work\-around until the regex engine supports this natively\&.
.sp
CRLF support can be disabled with \-\-no\-crlf\&.
.RE
.PP
\fB\-\-debug\fR
.RS 4
Show debug messages\&. Please use this when filing a bug report\&.
.sp
The \-\-debug flag is generally useful for figuring out why ripgrep skipped searching a particular file\&. The debug messages should mention all files skipped and why they were skipped\&.
.sp
To get even more debug output, use the \-\-trace flag, which implies \-\-debug along with additional trace data\&. With \-\-trace, the output could be quite large and is generally more useful for development\&.
.RE
.PP
\fB\-\-dfa\-size\-limit\fR \fINUM+SUFFIX?\fR
.RS 4
The upper size limit of the regex DFA\&. The default limit is 10M\&. This should only be changed on very large regex inputs where the (slower) fallback regex engine may otherwise be used if the limit is reached\&.
.sp
The argument accepts the same size suffixes as allowed in with the \-\-max\-filesize flag\&.
.RE
.PP
\fB\-E, \-\-encoding\fR \fIENCODING\fR
.RS 4
Specify the text encoding that ripgrep will use on all files searched\&. The default value is
\fIauto\fR, which will cause ripgrep to do a best effort automatic detection of encoding on a per\-file basis\&. Automatic detection in this case only applies to files that begin with a UTF\-8 or UTF\-16 byte\-order mark (BOM)\&. No other automatic detection is performed\&. One can also specify
\fInone\fR
which will then completely disable BOM sniffing and always result in searching the raw bytes, including a BOM if it\(cqs present, regardless of its encoding\&.
.sp
Other supported values can be found in the list of labels here:
https://encoding\&.spec\&.whatwg\&.org/#concept\-encoding\-get
.sp
For more details on encoding and how ripgrep deals with it, see GUIDE\&.md\&.
.sp
This flag can be disabled with \-\-no\-encoding\&.
.RE
.PP
\fB\-f, \-\-file\fR \fIPATTERNFILE\fR \&...
.RS 4
Search for patterns from the given file, with one pattern per line\&. When this flag is used 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\&.
.sp
A line is printed if and only if it matches at least one of the patterns\&.
.RE
.PP
\fB\-\-files\fR
.RS 4
Print each file that would be searched without actually performing the search\&. This is useful to determine whether a particular file is being searched or not\&.
.RE
.PP
\fB\-l, \-\-files\-with\-matches\fR
.RS 4
Only print the paths with at least one match\&.
.sp
This overrides \-\-files\-without\-match\&.
.RE
.PP
\fB\-\-files\-without\-match\fR
.RS 4
Only print the paths that contain zero matches\&. This inverts/negates the \-\-files\-with\-matches flag\&.
.sp
This overrides \-\-files\-with\-matches\&.
.RE
.PP
\fB\-F, \-\-fixed\-strings\fR
.RS 4
Treat the pattern as a literal string instead of a regular expression\&. When this flag is used, special regular expression meta characters such as \&.(){}*+ do not need to be escaped\&.
.sp
This flag can be disabled with \-\-no\-fixed\-strings\&.
.RE
.PP
\fB\-L, \-\-follow\fR
.RS 4
When this flag is enabled, ripgrep will follow symbolic links while traversing directories\&. This is disabled by default\&. Note that ripgrep will check for symbolic link loops and report errors if it finds one\&.
.sp
This flag can be disabled with \-\-no\-follow\&.
.RE
.PP
\fB\-g, \-\-glob\fR \fIGLOB\fR \&...
.RS 4
Include or exclude files and directories 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\&.
.RE
.PP
\fB\-\-glob\-case\-insensitive\fR
.RS 4
Process glob patterns given with the \-g/\-\-glob flag case insensitively\&. This effectively treats \-\-glob as \-\-iglob\&.
.sp
This flag can be disabled with the \-\-no\-glob\-case\-insensitive flag\&.
.RE
.PP
\fB\-\-heading\fR
.RS 4
This flag prints the file path above clusters of matches from each file instead of printing the file path as a prefix for each matched line\&. This is the default mode when printing to a terminal\&.
.sp
This overrides the \-\-no\-heading flag\&.
.RE
.PP
\fB\-\-hidden\fR
.RS 4
Search hidden files and directories\&. By default, hidden files and directories are skipped\&. Note that if a hidden file or a directory is whitelisted in an ignore file, then it will be searched even if this flag isn\(cqt provided\&.
.sp
This flag can be disabled with \-\-no\-hidden\&.
.RE
.PP
\fB\-\-iglob\fR \fIGLOB\fR \&...
.RS 4
Include or exclude files and directories 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\&. Globs are matched case insensitively\&.
.RE
.PP
\fB\-i, \-\-ignore\-case\fR
.RS 4
When this flag is provided, the given patterns will be searched case insensitively\&. The case insensitivity rules used by ripgrep conform to Unicode\(cqs "simple" case folding rules\&.
.sp
This flag overrides \-s/\-\-case\-sensitive and \-S/\-\-smart\-case\&.
.RE
.PP
\fB\-\-ignore\-file\fR \fIPATH\fR \&...
.RS 4
Specifies a path to one or more \&.gitignore format rules files\&. These patterns are applied after the patterns found in \&.gitignore and \&.ignore are applied and are matched relative to the current working directory\&. Multiple additional ignore files can be specified by using the \-\-ignore\-file flag several times\&. When specifying multiple ignore files, earlier files have lower precedence than later files\&.
.sp
If you are looking for a way to include or exclude files and directories directly on the command line, then used \-g instead\&.
.RE
.PP
\fB\-\-ignore\-file\-case\-insensitive\fR
.RS 4
Process ignore files (\&.gitignore, \&.ignore, etc\&.) case insensitively\&. Note that this comes with a performance penalty and is most useful on case insensitive file systems (such as Windows)\&.
.sp
This flag can be disabled with the \-\-no\-ignore\-file\-case\-insensitive flag\&.
.RE
.PP
\fB\-v, \-\-invert\-match\fR
.RS 4
Invert matching\&. Show lines that do not match the given patterns\&.
.RE
.PP
\fB\-\-json\fR
.RS 4
Enable printing results in a JSON Lines format\&.
.sp
When this flag is provided, ripgrep will emit a sequence of messages, each encoded as a JSON object, where there are five different message types:
.sp
\fBbegin\fR
\- A message that indicates a file is being searched and contains at least one match\&.
.sp
\fBend\fR
\- A message the indicates a file is done being searched\&. This message also include summary statistics about the search for a particular file\&.
.sp
\fBmatch\fR
\- A message that indicates a match was found\&. This includes the text and offsets of the match\&.
.sp
\fBcontext\fR
\- A message that indicates a contextual line was found\&. This includes the text of the line, along with any match information if the search was inverted\&.
.sp
\fBsummary\fR
\- The final message emitted by ripgrep that contains summary statistics about the search across all files\&.
.sp
Since file paths or the contents of files are not guaranteed to be valid UTF\-8 and JSON itself must be representable by a Unicode encoding, ripgrep will emit all data elements as objects with one of two keys:
\fItext\fR
or
\fIbytes\fR\&.
\fItext\fR
is a normal JSON string when the data is valid UTF\-8 while
\fIbytes\fR
is the base64 encoded contents of the data\&.
.sp
The JSON Lines format is only supported for showing search results\&. It cannot be used with other flags that emit other types of output, such as \-\-files, \-\-files\-with\-matches, \-\-files\-without\-match, \-\-count or \-\-count\-matches\&. ripgrep will report an error if any of the aforementioned flags are used in concert with \-\-json\&.
.sp
Other flags that control aspects of the standard output such as \-\-only\-matching, \-\-heading, \-\-replace, \-\-max\-columns, etc\&., have no effect when \-\-json is set\&.
.sp
A more complete description of the JSON format used can be found here:
https://docs\&.rs/grep\-printer/*/grep_printer/struct\&.JSON\&.html
.sp
The JSON Lines format can be disabled with \-\-no\-json\&.
.RE
.PP
\fB\-\-line\-buffered\fR
.RS 4
When enabled, ripgrep will use line buffering\&. That is, whenever a matching line is found, it will be flushed to stdout immediately\&. This is the default when ripgrep\(cqs stdout is connected to a terminal, but otherwise, ripgrep will use block buffering, which is typically faster\&. This flag forces ripgrep to use line buffering even if it would otherwise use block buffering\&. This is typically useful in shell pipelines, e\&.g\&.,
\fItail \-f something\&.log | rg foo \-\-line\-buffered | rg bar\fR\&.
.sp
Forceful line buffering can be disabled with \-\-no\-line\-buffered\&. Note that using \-\-no\-line\-buffered causes ripgrep to revert to its default behavior of automatically detecting the buffering strategy\&. To force block buffering, use the \-\-block\-buffered flag\&.
.RE
.PP
\fB\-n, \-\-line\-number\fR
.RS 4
Show line numbers (1\-based)\&. This is enabled by default when searching in a terminal\&.
.RE
.PP
\fB\-x, \-\-line\-regexp\fR
.RS 4
Only show matches surrounded by line boundaries\&. This is equivalent to putting ^\&...$ around all of the search patterns\&. In other words, this only prints lines where the entire line participates in a match\&.
.sp
This overrides the \-\-word\-regexp flag\&.
.RE
.PP
\fB\-M, \-\-max\-columns\fR \fINUM\fR
.RS 4
Don\(cqt print lines longer than this limit in bytes\&. Longer lines are omitted, and only the number of matches in that line is printed\&.
.sp
When this flag is omitted or is set to 0, then it has no effect\&.
.RE
.PP
\fB\-\-max\-columns\-preview\fR
.RS 4
When the
\fI\-\-max\-columns\fR
flag is used, ripgrep will by default completely replace any line that is too long with a message indicating that a matching line was removed\&. When this flag is combined with
\fI\-\-max\-columns\fR, a preview of the line (corresponding to the limit size) is shown instead, where the part of the line exceeding the limit is not shown\&.
.sp
If the
\fI\-\-max\-columns\fR
flag is not set, then this has no effect\&.
.sp
This flag can be disabled with
\fI\-\-no\-max\-columns\-preview\fR\&.
.RE
.PP
\fB\-m, \-\-max\-count\fR \fINUM\fR
.RS 4
Limit the number of matching lines per file searched to NUM\&.
.RE
.PP
\fB\-\-max\-depth\fR \fINUM\fR
.RS 4
Limit the depth of directory traversal to NUM levels beyond the paths given\&. A value of zero only searches the explicitly given paths themselves\&.
.sp
For example,
\fIrg \-\-max\-depth 0 dir/\fR
is a no\-op because dir/ will not be descended into\&.
\fIrg \-\-max\-depth 1 dir/\fR
will search only the direct children of
\fIdir\fR\&.
.RE
.PP
\fB\-\-max\-filesize\fR \fINUM+SUFFIX?\fR
.RS 4
Ignore files larger than NUM in size\&. This does not apply to directories\&.
.sp
The input format accepts suffixes of K, M or G which correspond to kilobytes, megabytes and gigabytes, respectively\&. If no suffix is provided the input is treated as bytes\&.
.sp
Examples: \-\-max\-filesize 50K or \-\-max\-filesize 80M
.RE
.PP
\fB\-\-mmap\fR
.RS 4
Search using memory maps when possible\&. This is enabled by default when ripgrep thinks it will be faster\&.
.sp
Memory map searching doesn\(cqt currently support all options, so if an incompatible option (e\&.g\&., \-\-context) is given with \-\-mmap, then memory maps will not be used\&.
.sp
Note that ripgrep may abort unexpectedly when \-\-mmap if it searches a file that is simultaneously truncated\&.
.sp
This flag overrides \-\-no\-mmap\&.
.RE
.PP
\fB\-U, \-\-multiline\fR
.RS 4
Enable matching across multiple lines\&.
.sp
When multiline mode is enabled, ripgrep will lift the restriction that a match cannot include a line terminator\&. For example, when multiline mode is not enabled (the default), then the regex
\fI\ep{any}\fR
will match any Unicode codepoint other than
\fI\en\fR\&. Similarly, the regex
\fI\en\fR
is explicitly forbidden, and if you try to use it, ripgrep will return an error\&. However, when multiline mode is enabled,
\fI\ep{any}\fR
will match any Unicode codepoint, including
\fI\en\fR, and regexes like
\fI\en\fR
are permitted\&.
.sp
An important caveat is that multiline mode does not change the match semantics of
\fI\&.\fR\&. Namely, in most regex matchers, a
\fI\&.\fR
will by default match any character other than
\fI\en\fR, and this is true in ripgrep as well\&. In order to make
\fI\&.\fR
match
\fI\en\fR, you must enable the "dot all" flag inside the regex\&. For example, both
\fI(?s)\&.\fR
and
\fI(?s:\&.)\fR
have the same semantics, where
\fI\&.\fR
will match any character, including
\fI\en\fR\&. Alternatively, the
\fI\-\-multiline\-dotall\fR
flag may be passed to make the "dot all" behavior the default\&. This flag only applies when multiline search is enabled\&.
.sp
There is no limit on the number of the lines that a single match can span\&.
.sp
\fBWARNING\fR: Because of how the underlying regex engine works, multiline searches may be slower than normal line\-oriented searches, and they may also use more memory\&. In particular, when multiline mode is enabled, ripgrep requires that each file it searches is laid out contiguously in memory (either by reading it onto the heap or by memory\-mapping it)\&. Things that cannot be memory\-mapped (such as stdin) will be consumed until EOF before searching can begin\&. In general, ripgrep will only do these things when necessary\&. Specifically, if the \-\-multiline flag is provided but the regex does not contain patterns that would match
\fI\en\fR
characters, then ripgrep will automatically avoid reading each file into memory before searching it\&. Nevertheless, if you only care about matches spanning at most one line, then it is always better to disable multiline mode\&.
.sp
This flag can be disabled with \-\-no\-multiline\&.
.RE
.PP
\fB\-\-multiline\-dotall\fR
.RS 4
This flag enables "dot all" in your regex pattern, which causes
\fI\&.\fR
to match newlines when multiline searching is enabled\&. This flag has no effect if multiline searching isn\(cqt enabled with the \-\-multiline flag\&.
.sp
Normally, a
\fI\&.\fR
will match any character except newlines\&. While this behavior typically isn\(cqt relevant for line\-oriented matching (since matches can span at most one line), this can be useful when searching with the \-U/\-\-multiline flag\&. By default, the multiline mode runs without this flag\&.
.sp
This flag is generally intended to be used in an alias or your ripgrep config file if you prefer "dot all" semantics by default\&. Note that regardless of whether this flag is used, "dot all" semantics can still be controlled via inline flags in the regex pattern itself, e\&.g\&.,
\fI(?s:\&.)\fR
always enables "dot all" whereas
\fI(?\-s:\&.)\fR
always disables "dot all"\&.
.sp
This flag can be disabled with \-\-no\-multiline\-dotall\&.
.RE
.PP
\fB\-\-no\-config\fR
.RS 4
Never read configuration files\&. When this flag is present, ripgrep will not respect the RIPGREP_CONFIG_PATH environment variable\&.
.sp
If ripgrep ever grows a feature to automatically read configuration files in pre\-defined locations, then this flag will also disable that behavior as well\&.
.RE
.PP
\fB\-I, \-\-no\-filename\fR
.RS 4
Never print the file path with the matched lines\&. This is the default when ripgrep is explicitly instructed to search one file or stdin\&.
.sp
This flag overrides \-\-with\-filename\&.
.RE
.PP
\fB\-\-no\-heading\fR
.RS 4
Don\(cqt group matches by each file\&. If \-\-no\-heading is provided in addition to the \-H/\-\-with\-filename flag, then file paths will be printed as a prefix for every matched line\&. This is the default mode when not printing to a terminal\&.
.sp
This overrides the \-\-heading flag\&.
.RE
.PP
\fB\-\-no\-ignore\fR
.RS 4
Don\(cqt respect ignore files (\&.gitignore, \&.ignore, etc\&.)\&. This implies \-\-no\-ignore\-parent, \-\-no\-ignore\-dot and \-\-no\-ignore\-vcs\&.
.sp
This flag can be disabled with the \-\-ignore flag\&.
.RE
.PP
\fB\-\-no\-ignore\-dot\fR
.RS 4
Don\(cqt respect \&.ignore files\&.
.sp
This flag can be disabled with the \-\-ignore\-dot flag\&.
.RE
.PP
\fB\-\-no\-ignore\-global\fR
.RS 4
Don\(cqt respect ignore files that come from "global" sources such as git\(cqs
core\&.excludesFile
configuration option (which defaults to
$HOME/\&.config/git/ignore)\&.
.sp
This flag can be disabled with the \-\-ignore\-global flag\&.
.RE
.PP
\fB\-\-no\-ignore\-messages\fR
.RS 4
Suppresses all error messages related to parsing ignore files such as \&.ignore or \&.gitignore\&.
.sp
This flag can be disabled with the \-\-ignore\-messages flag\&.
.RE
.PP
\fB\-\-no\-ignore\-parent\fR
.RS 4
Don\(cqt respect ignore files (\&.gitignore, \&.ignore, etc\&.) in parent directories\&.
.sp
This flag can be disabled with the \-\-ignore\-parent flag\&.
.RE
.PP
\fB\-\-no\-ignore\-vcs\fR
.RS 4
Don\(cqt respect version control ignore files (\&.gitignore, etc\&.)\&. This implies \-\-no\-ignore\-parent for VCS files\&. Note that \&.ignore files will continue to be respected\&.
.sp
This flag can be disabled with the \-\-ignore\-vcs flag\&.
.RE
.PP
\fB\-N, \-\-no\-line\-number\fR
.RS 4
Suppress line numbers\&. This is enabled by default when not searching in a terminal\&.
.RE
.PP
\fB\-\-no\-messages\fR
.RS 4
Suppress all error messages related to opening and reading files\&. Error messages related to the syntax of the pattern given are still shown\&.
.sp
This flag can be disabled with the \-\-messages flag\&.
.RE
.PP
\fB\-\-no\-mmap\fR
.RS 4
Never use memory maps, even when they might be faster\&.
.sp
This flag overrides \-\-mmap\&.
.RE
.PP
\fB\-\-no\-pcre2\-unicode\fR
.RS 4
When PCRE2 matching is enabled, this flag will disable Unicode mode, which is otherwise enabled by default\&. If PCRE2 matching is not enabled, then this flag has no effect\&.
.sp
When PCRE2\(cqs Unicode mode is enabled, several different types of patterns become Unicode aware\&. This includes
\fI\eb\fR,
\fI\eB\fR,
\fI\ew\fR,
\fI\eW\fR,
\fI\ed\fR,
\fI\eD\fR,
\fI\es\fR
and
\fI\eS\fR\&. Similarly, the
\fI\&.\fR
meta character will match any Unicode codepoint instead of any byte\&. Caseless matching will also use Unicode simple case folding instead of ASCII\-only case insensitivity\&.
.sp
Unicode mode in PCRE2 represents a critical trade off in the user experience of ripgrep\&. In particular, unlike the default regex engine, PCRE2 does not support the ability to search possibly invalid UTF\-8 with Unicode features enabled\&. Instead, PCRE2
\fBrequires\fR
that everything it searches when Unicode mode is enabled is valid UTF\-8\&. (Or valid UTF\-16/UTF\-32, but for the purposes of ripgrep, we only discuss UTF\-8\&.) This means that if you have PCRE2\(cqs Unicode mode enabled and you attempt to search invalid UTF\-8, then the search for that file will halt and print an error\&. For this reason, when PCRE2\(cqs Unicode mode is enabled, ripgrep will automatically "fix" invalid UTF\-8 sequences by replacing them with the Unicode replacement codepoint\&.
.sp
If you would rather see the encoding errors surfaced by PCRE2 when Unicode mode is enabled, then pass the \-\-no\-encoding flag to disable all transcoding\&.
.sp
Related flags: \-\-pcre2
.sp
This flag can be disabled with \-\-pcre2\-unicode\&.
.RE
.PP
\fB\-0, \-\-null\fR
.RS 4
Whenever a file path is printed, follow it with a NUL byte\&. This includes printing file paths before matches, and when printing a list of matching files such as with \-\-count, \-\-files\-with\-matches and \-\-files\&. This option is useful for use with xargs\&.
.RE
.PP
\fB\-\-null\-data\fR
.RS 4
Enabling this option causes ripgrep to use NUL as a line terminator instead of the default of
\fI\en\fR\&.
.sp
This is useful when searching large binary files that would otherwise have very long lines if
\fI\en\fR
were used as the line terminator\&. In particular, ripgrep requires that, at a minimum, each line must fit into memory\&. Using NUL instead can be a useful stopgap to keep memory requirements low and avoid OOM (out of memory) conditions\&.
.sp
This is also useful for processing NUL delimited data, such as that emitted when using ripgrep\(cqs \-0/\-\-null flag or find\(cqs \-\-print0 flag\&.
.sp
Using this flag implies \-a/\-\-text\&.
.RE
.PP
\fB\-\-one\-file\-system\fR
.RS 4
When enabled, ripgrep will not cross file system boundaries relative to where the search started from\&.
.sp
Note that this applies to each path argument given to ripgrep\&. For example, in the command
\fIrg \-\-one\-file\-system /foo/bar /quux/baz\fR, ripgrep will search both
\fI/foo/bar\fR
and
\fI/quux/baz\fR
even if they are on different file systems, but will not cross a file system boundary when traversing each path\(cqs directory tree\&.
.sp
This is similar to find\(cqs
\fI\-xdev\fR
or
\fI\-mount\fR
flag\&.
.sp
This flag can be disabled with \-\-no\-one\-file\-system\&.
.RE
.PP
\fB\-o, \-\-only\-matching\fR
.RS 4
Print only the matched (non\-empty) parts of a matching line, with each such part on a separate output line\&.
.RE
.PP
\fB\-\-passthru\fR
.RS 4
Print both matching and non\-matching lines\&.
.sp
Another way to achieve a similar effect is by modifying your pattern to match the empty string\&. For example, if you are searching using
\fIrg foo\fR
then using
\fIrg "^|foo"\fR
instead will emit every line in every file searched, but only occurrences of
\fIfoo\fR
will be highlighted\&. This flag enables the same behavior without needing to modify the pattern\&.
.RE
.PP
\fB\-\-path\-separator\fR \fISEPARATOR\fR
.RS 4
Set the path separator to use when printing file paths\&. This defaults to your platform\(cqs path separator, which is / on Unix and \e on Windows\&. This flag is intended for overriding the default when the environment demands it (e\&.g\&., cygwin)\&. A path separator is limited to a single byte\&.
.RE
.PP
\fB\-P, \-\-pcre2\fR
.RS 4
When this flag is present, ripgrep will use the PCRE2 regex engine instead of its default regex engine\&.
.sp
This is generally useful when you want to use features such as look\-around or backreferences\&.
.sp
Note that PCRE2 is an optional ripgrep feature\&. If PCRE2 wasn\(cqt included in your build of ripgrep, then using this flag will result in ripgrep printing an error message and exiting\&. PCRE2 may also have worse user experience in some cases, since it has fewer introspection APIs than ripgrep\(cqs default regex engine\&. For example, if you use a \*(Aq \*(Aq in a PCRE2 regex without the
\fI\-U/\-\-multiline\fR
flag, then ripgrep will silently fail to match anything instead of reporting an error immediately (like it does with the default regex engine)\&.
.sp
Related flags: \-\-no\-pcre2\-unicode
.sp
This flag can be disabled with \-\-no\-pcre2\&.
.RE
.PP
\fB\-\-pcre2\-version\fR
.RS 4
When this flag is present, ripgrep will print the version of PCRE2 in use, along with other information, and then exit\&. If PCRE2 is not available, then ripgrep will print an error message and exit with an error code\&.
.RE
.PP
\fB\-\-pre\fR \fICOMMAND\fR
.RS 4
For each input FILE, search the standard output of COMMAND FILE rather than the contents of FILE\&. This option expects the COMMAND program to either be an absolute path or to be available in your PATH\&. Either an empty string COMMAND or the
\fI\-\-no\-pre\fR
flag will disable this behavior\&.
.sp
.if n \{\
.RS 4
.\}
.nf
WARNING: When this flag is set, ripgrep will unconditionally spawn a
process for every file that is searched\&. Therefore, this can incur an
unnecessarily large performance penalty if you don\*(Aqt otherwise need the
flexibility offered by this flag\&. One possible mitigation to this is to use
the \*(Aq\-\-pre\-glob\*(Aq flag to limit which files a preprocessor is run with\&.
.fi
.if n \{\
.RE
.\}
.sp
A preprocessor is not run when ripgrep is searching stdin\&.
.sp
When searching over sets of files that may require one of several decoders as preprocessors, COMMAND should be a wrapper program or script which first classifies FILE based on magic numbers/content or based on the FILE name and then dispatches to an appropriate preprocessor\&. Each COMMAND also has its standard input connected to FILE for convenience\&.
.sp
For example, a shell script for COMMAND might look like:
.sp
.if n \{\
.RS 4
.\}
.nf
case "$1" in
*\&.pdf)
exec pdftotext "$1" \-
;;
*)
case $(file "$1") in
*Zstandard*)
exec pzstd \-cdq
;;
*)
exec cat
;;
esac
;;
esac
.fi
.if n \{\
.RE
.\}
.sp
The above script uses
pdftotext
to convert a PDF file to plain text\&. For all other files, the script uses the
file
utility to sniff the type of the file based on its contents\&. If it is a compressed file in the Zstandard format, then
pzstd
is used to decompress the contents to stdout\&.
.sp
This overrides the \-z/\-\-search\-zip flag\&.
.RE
.PP
\fB\-\-pre\-glob\fR \fIGLOB\fR \&...
.RS 4
This flag works in conjunction with the \-\-pre flag\&. Namely, when one or more \-\-pre\-glob flags are given, then only files that match the given set of globs will be handed to the command specified by the \-\-pre flag\&. Any non\-matching files will be searched without using the preprocessor command\&.
.sp
This flag is useful when searching many files with the \-\-pre flag\&. Namely, it permits the ability to avoid process overhead for files that don\(cqt need preprocessing\&. For example, given the following shell script,
\fIpre\-pdftotext\fR:
.sp
.if n \{\
.RS 4
.\}
.nf
#!/bin/sh
.fi
.if n \{\
.RE
.\}
.sp
.if n \{\
.RS 4
.\}
.nf
pdftotext "$1" \-
.fi
.if n \{\
.RE
.\}
.sp
then it is possible to use
\fI\-\-pre pre\-pdftotext \-\-pre\-glob \*(Aq*\&.pdf\fR\*(Aq to make it so ripgrep only executes the
\fIpre\-pdftotext\fR
command on files with a
\fI\&.pdf\fR
extension\&.
.sp
Multiple \-\-pre\-glob flags may be used\&. Globbing rules match \&.gitignore globs\&. Precede a glob with a ! to exclude it\&.
.sp
This flag has no effect if the \-\-pre flag is not used\&.
.RE
.PP
\fB\-p, \-\-pretty\fR
.RS 4
This is a convenience alias for
\fI\-\-color always \-\-heading \-\-line\-number\fR\&. This flag is useful when you still want pretty output even if you\(cqre piping ripgrep to another program or file\&. For example:
\fIrg \-p foo | less \-R\fR\&.
.RE
.PP
\fB\-q, \-\-quiet\fR
.RS 4
Do not print anything to stdout\&. If a match is found in a file, then ripgrep will stop searching\&. This is useful when ripgrep is used only for its exit code (which will be an error if no matches are found)\&.
.sp
When \-\-files is used, then ripgrep will stop finding files after finding the first file that matches all ignore rules\&.
.RE
.PP
\fB\-\-regex\-size\-limit\fR \fINUM+SUFFIX?\fR
.RS 4
The upper size limit of the compiled regex\&. The default limit is 10M\&.
.sp
The argument accepts the same size suffixes as allowed in the \-\-max\-filesize flag\&.
.RE
.PP
\fB\-e, \-\-regexp\fR \fIPATTERN\fR \&...
.RS 4
A pattern to search for\&. This option can be provided multiple times, where all patterns given are searched\&. Lines matching at least one of the provided patterns are printed\&. This flag can also be used when searching for patterns that start with a dash\&.
.sp
For example, to search for the literal
\fI\-foo\fR, you can use this flag:
.sp
.if n \{\
.RS 4
.\}
.nf
rg \-e \-foo
.fi
.if n \{\
.RE
.\}
.sp
You can also use the special
\fI\-\-\fR
delimiter to indicate that no more flags will be provided\&. Namely, the following is equivalent to the above:
.sp
.if n \{\
.RS 4
.\}
.nf
rg \-\- \-foo
.fi
.if n \{\
.RE
.\}
.RE
.PP
\fB\-r, \-\-replace\fR \fIREPLACEMENT_TEXT\fR
.RS 4
Replace every match with the text given when printing results\&. Neither this flag nor any other ripgrep flag will modify your files\&.
.sp
Capture group indices (e\&.g\&., $5) and names (e\&.g\&., $foo) are supported in the replacement string\&. In shells such as Bash and zsh, you should wrap the pattern in single quotes instead of double quotes\&. Otherwise, capture group indices will be replaced by expanded shell variables which will most likely be empty\&.
.sp
Note that the replacement by default replaces each match, and NOT the entire line\&. To replace the entire line, you should match the entire line\&.
.sp
This flag can be used with the \-o/\-\-only\-matching flag\&.
.RE
.PP
\fB\-z, \-\-search\-zip\fR
.RS 4
Search in compressed files\&. Currently gzip, bzip2, xz, LZ4, LZMA, Brotli and Zstd files are supported\&. This option expects the decompression binaries to be available in your PATH\&.
.sp
This flag can be disabled with \-\-no\-search\-zip\&.
.RE
.PP
\fB\-S, \-\-smart\-case\fR
.RS 4
Searches case insensitively if the pattern is all lowercase\&. Search case sensitively otherwise\&.
.sp
This overrides the \-s/\-\-case\-sensitive and \-i/\-\-ignore\-case flags\&.
.RE
.PP
\fB\-\-sort\fR \fISORTBY\fR
.RS 4
This flag enables sorting of results in ascending order\&. The possible values for this flag are:
.sp
.if n \{\
.RS 4
.\}
.nf
path Sort by file path\&.
modified Sort by the last modified time on a file\&.
accessed Sort by the last accessed time on a file\&.
created Sort by the creation time on a file\&.
none Do not sort results\&.
.fi
.if n \{\
.RE
.\}
.sp
If the sorting criteria isn\(cqt available on your system (for example, creation time is not available on ext4 file systems), then ripgrep will attempt to detect this and print an error without searching any results\&. Otherwise, the sort order is unspecified\&.
.sp
To sort results in reverse or descending order, use the \-\-sortr flag\&. Also, this flag overrides \-\-sortr\&.
.sp
Note that sorting results currently always forces ripgrep to abandon parallelism and run in a single thread\&.