Home/Tools/ripgrep
r
Install via:brewcargo
License:MITUnlicense
Open source

ripgrep

About

A line-oriented search tool that recursively searches the current directory for a regex pattern. Built on Rust, it is often faster than grep, ag and ack.

Pricing

Free

ripgrep (rg) is a fast text search tool that respects your .gitignore by default. It searches codebases in milliseconds, with smart regex and pretty output.

Key Features

  • Blazing fast parallel search.
  • Respects .gitignore automatically.
  • Smart-case regex by default.
  • Colorized output with context lines.
  • Files-type filtering (rg -t js).
  • Works like grep but faster.

Pricing

ripgrep is free and open source under MIT and Unlicense.

Getting Started

brew install ripgrep
rg "TODO" src/
rg -t ts "export function" --stats

It pairs perfectly with fzf for interactive search.