ripgrep

 19 likes

ripgrep is a command line search tool that combines the usability of The Silver Searcher (an ack clone) with the raw speed of GNU grep.

ripgrep screenshot 1

License model

  • FreeOpen Source

Application type

Country of Origin

  • US flagUnited States

Platforms

  • Mac
  • Windows
  • Linux
  • BSD
5 / 5 Avg rating (3)
19likes
1comment
0news articles

Features

Suggest and vote on features
  1.  File Search
  2.  Command line interface
  3.  Support for regular expressions
  4.  Full-Text Search
  5.  PHP IDE
  6.  Ngnix Caching

 Tags

  • grep
  • search-tool

ripgrep News & Activities

Highlights All activities

Recent News

No news, maybe you know any news worth sharing?
Share a News Tip

Recent activities

  • User3050061, KGerring and forcemajore liked ripgrep
    9 months ago
Show all activities

ripgrep information

  • Developed by

    US flagAndrew Gallant
  • Licensing

    Open Source and Free product.
  • Rating

    Average rating of 5
  • Alternatives

    14 alternatives listed
  • Supported Languages

    • English

AlternativeTo Categories

File ManagementOS & Utilities

Popular alternatives

View all

Our users have written 1 comments and reviews about ripgrep, and it has gotten 19 likes

ripgrep was added to AlternativeTo by wilt on Dec 4, 2016 and this page was last updated Oct 8, 2021.

Comments and Reviews

   
 Post comment/review
Top Positive Comment
WeiHua Liu
Sep 20, 2022
2

It searches fast for the content of plain text files in English as well as Chinese without an index and shows up the context of the results.

What is ripgrep?

ripgrep is a command line search tool that combines the usability of The Silver Searcher (an ack clone) with the raw speed of GNU grep.

Why should I use ripgrep?

  • It can replace both The Silver Searcher and GNU grep because it is faster than both. (N.B. It is not, strictly speaking, a "drop-in" replacement for both, but the feature sets are far more similar than different.)
  • Like The Silver Searcher, ripgrep defaults to recursive directory search and won't search files ignored by your .gitignore files. It also ignores hidden and binary files by default. ripgrep also implements full support for .gitignore, where as there are many bugs related to that functionality in The Silver Searcher.
  • ripgrep can search specific types of files. For example, rg -tpy foo limits your search to Python files and rg -Tjs foo excludes Javascript files from your search. ripgrep can be taught about new file types with custom matching rules. ripgrep supports many features found in grep, such as showing the context of search results, searching multiple patterns, highlighting matches with color and full Unicode support. Unlike GNU grep, ripgrep stays fast while supporting Unicode (which is always on).

In other words, use ripgrep if you like speed, sane defaults, fewer bugs and Unicode.