ripgrep
CLIRecursively searches directories for a regex pattern, respecting .gitignore.
search4 recipes
age
CLISimple, modern file encryption with small explicit keys.
Encrypt a file~92% est.
age -r $(age-keygen | grep 'public key' | awk '{print $3}') -o secret.age plaintext.txtsecurity3 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.
Replace text across all files in a directory (portable)Verified macOS · Linux
grep -rl 'old' . | xargs perl -pi -e 's/old/new/g'text-processing6 recipes · 4 verified
delta
CLIA syntax-highlighting pager for git, diff, and grep output.
viewers3 recipes