My main usecase for find is not only finding files, but to do actions on them through -exec. Unless I’m missing something, that’s not supported with this tool.
fd -0 '\.log$' | xargs -0 tail
11–20 of 225 posts
My main usecase for find is not only finding files, but to do actions on them through -exec. Unless I’m missing something, that’s not supported with this tool.
fd -0 '\.log$' | xargs -0 tail
ripgrep, exa and now fd... any other CLI tools I should cargo-install?
Thinking of stuff like fd and:
ripgrep: https://github.com/BurntSushi/ripgrep (grep/ag alt)
xsv: https://github.com/BurntSushi/xsv (csv tool)
exa: https://the.exa.website/ (ls)
una: https://github.com/jwiegley/una (multi-compression utils wrapper)
tokei: https://github.com/Aaronepower/tokei (loc stats)
And of course this: https://github.com/uutils/coreutils
How does it compare in speed to 'ag' (i.e the silver searcher) -g option?
rg -g '*.foo' --files
How does it compare in speed to 'ag' (i.e the silver searcher) -g option?