1
Let's make a list of our favorite CLI utilities.
(programming.dev)
My answers (mostly running in powershell - not that it makes much of a difference!)
Rust-based utilities I couldn't live without:
fd
(fd-find) for finding my filesrg
(ripgrep) for string searchessd
(sed) for search and replacedust
(dust) for information about my directorieslsd
(aliased to ls
or l
) for replacing Dir
bat
(better cat) - for when the help pages are too longOther stuff I love:
I really like jless. You can pipe the JSON output of a cURL command into it and it displays it in a really nice, easy to read way with collapsible arrays and objects.
pv, which is like cat, simply copying files or stdin to stdout, but prints statistics to the terminal.
A related tip: dd
isn't special in the way most people use it. This works too, if you're root: pv my-fav-distro.iso > /dev/sdc
Always partial to yq and jq. No easier way to interact with kubernetes outputs on the fly.
How I have never heard of yq, I'm unsure, but thank you as I'm sure it will make life easier