🛒
Search text with grep
Name Last modified Size Description
Parent Directory -
- how to use
- comparison: ack, ag, git-grep, gnu grep and ripgrep
- tl;dr do use ripgrep (rg) for recursive directory searches
- install your distibution version, use musl static binary or compile from rust sources
- even all file formats with rga
- silver searcher
- agrep for approximate matching
- if very complicated matching needed, still consider perl
find . -type f -print0 | xargs -0 perl -ne 'printf "%s: %s: %s\n", $ARGV, $., $_ if /complicated/'
|