privsecfoss@feddit.dk to Linux@lemmy.ml · 1 year agoMust have commandline tools?message-squaremessage-square22fedilinkarrow-up17arrow-down10file-text
arrow-up17arrow-down1message-squareMust have commandline tools?privsecfoss@feddit.dk to Linux@lemmy.ml · 1 year agomessage-square22fedilinkfile-text
minus-squareds12@beehaw.orglinkfedilinkarrow-up4·1 year agofzf 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
minus-squarewildbus8979@sh.itjust.workslinkfedilinkarrow-up1·1 year agoWhat is the difference between ripgrep and just plain grep?
minus-squareForthEorlingas@lemmy.fmhy.mllinkfedilinkarrow-up1·1 year agoripgrep is a reimplementation of grep in Rust. It benchmarks faster for large file searches and also comes with quality of life features like syntax highlighting by default.
minus-squareShitpostCentral@lemmy.worldlinkfedilinkarrow-up0·1 year agoIt also ignores files in .gitignore and some others by default
minus-squareeyolf@lemmy.worldlinkfedilinkarrow-up1·1 year agoIt also has a much simpler and forgiving syntax. Just type rg anything and it finds anything
minus-squareTom@feddit.delinkfedilinkarrow-up1·1 year agoSwitched reasently from FZF to Skim which is written in Rust (like ripgrep).
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
What is the difference between
ripgrep
and just plain grep?ripgrep
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.It also ignores files in .gitignore and some others by default
It also has a much simpler and forgiving syntax. Just type
rg anything
and it finds anythingSwitched reasently from FZF to Skim which is written in Rust (like ripgrep).