Favorite CLI tools
A personal list of some of the best CLI tools I’ve found so far and using on a regular basis.
exa(replacement forls, GitHub)fd(replacement forfindbut more user friendly, GitHub)bat(replacement forcatbut sooo much better!, GitHub)rg (ripgrep)(replacement forgrep, searches for content inside files, super fast!, GitHub)
All of these are written in rust, neat! I also aliased all of them:
alias ls="exa --long"
alias li="exa --icons"
alias cat="bat"
alias find="fd"
alias grep="rg"