ripgrep🔗 Back A faster, modern alternative to grep Installation🔗 sudo apt install ripgrep # brew install ripgrep Basic Usage🔗 Search in Files rg "pattern" Case-Insensitive Search rg -i "pattern" Search in Specific File Types rg "pattern" -t py Exclude Files/Directories rg "pattern" --glob '!node_modules' JSON Output rg "pattern" --json Replace Text rg "old" --replace "new" Combining rg with fzf🔗 rg "pattern" | fzf