ripgrep
Installation
SKILL.md
ripgrep (rg)
Fast recursive search tool that searches files line-by-line for patterns.
Basic Usage
rg <pattern> [path] # Recursive search (default)
rg -F <literal> [path] # Fixed string (no regex)
rg 'pattern' -g '*.rs' # With glob filter