Must have commandline tools?
Must have commandline tools?
Big fan of commandline tools such as vim, htop etc. What is in your opinion must have tools?
You're viewing a single thread.
fzf for quickly matching file names especially deep in the directory hierarchy
ripgrep for quickly searching for text content within files
dtrx for handling the right extractions of different archive types
7 0 ReplyWhat is the difference between
ripgrep
and just plain grep?3 0 Replyripgrep
is a reimplementation ofgrep
in Rust. It benchmarks faster for large file searches and also comes with quality of life features like syntax highlighting by default.5 0 ReplyIt also ignores files in .gitignore and some others by default
4 0 ReplyIt also has a much simpler and forgiving syntax. Just type
rg anything
and it finds anything3 0 Replygrep
does that throughfgrep
1 0 Reply
Even better, there is ripgrep-all that can also search in binary files like PDFs and office documents: https://github.com/phiresky/ripgrep-all
1 0 Reply