Ripgrep
Blazingly fast text search tool - recursively searches directories for regex patterns with respect to gitignore rules.
Blazingly fast text search tool - recursively searches directories for regex patterns with respect to gitignore rules.
Real data. Real impact.
Emerging
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Fast, smart recursive search. Respects
.gitignore by default.
# Search for "TODO" in current directory rg "TODO"Case-insensitive search
rg -i "fixme"
Search specific file types
rg "error" -t py # Python files only rg "function" -t js # JavaScript files
# Whole word match rg -w "test"Show only filenames
rg -l "pattern"
Show with context (3 lines before/after)
rg -C 3 "function"
Count matches
rg -c "import"
# Multiple file types rg "error" -t py -t jsExclude file types
rg "TODO" -T md -T txt
List available types
rg --type-list
# Regex search rg "user_\d+"Fixed string (no regex)
rg -F "function()"
Multiline search
rg -U "start.*end"
Only show matches, not lines
rg -o "https?://[^\s]+"
# Search specific directory rg "pattern" src/Glob patterns
rg "error" -g ".log" rg "test" -g "!.min.js"
Include hidden files
rg "secret" --hidden
Search all files (ignore .gitignore)
rg "pattern" --no-ignore
# Preview replacements rg "old_name" --replace "new_name"Actually replace (requires extra tool like sd)
rg "old_name" -l | xargs sed -i 's/old_name/new_name/g'
# Parallel search (auto by default) rg "pattern" -j 8Skip large files
rg "pattern" --max-filesize 10M
Memory map files
rg "pattern" --mmap
Find TODOs in code:
rg "TODO|FIXME|HACK" --type-add 'code:*.{rs,go,py,js,ts}' -t code
Search in specific branches:
git show branch:file | rg "pattern"
Find files containing multiple patterns:
rg "pattern1" | rg "pattern2"
Search with context and color:
rg -C 2 --color always "error" | less -R
.gitignore, skips binary filesrg is often faster than grep -r-t for file type filtering instead of --includerg pattern -l | xargs tool~/.ripgreprc--stats to see search performanceGitHub: https://github.com/BurntSushi/ripgrep User Guide: https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.