ripgrep
CLIRecursively searches directories for a regex pattern, respecting .gitignore.
Search for pattern in all files~99% est.
rg 'pattern' .+3 more matching recipessearch4 recipes
awk
CLIPattern-scanning and text-processing language.
text-processing4 recipes
fd
CLIA simple, fast, and user-friendly alternative to find.
Find files by name pattern~99% est.
fd 'config' .search3 recipes
hyperfine
CLIA command-line benchmarking tool.
Compare two commands~98% est.
hyperfine 'rg pattern .' 'grep -r pattern .'dev-tools3 recipes
sed
CLIStream editor for filtering and transforming text.
Delete lines matching pattern~97% est.
sed '/pattern/d' file.txttext-processing6 recipes · 4 verified
grex
CLIGenerate regular expressions from test cases.
dev-tools2 recipes