Skip to main content
  1. Posts/

Awesome Command Line Tools Written in Rust

··92 words·1 min·

In this post, I want to share some command line tools written in Rust, which are good alternatives to some of the original tools used in command line.

  1. exa: an alternative to ls

use exa -F

https://github.com/ogham/exa

  1. lsd: another alternative to ls

use: lsd -F --icon=never

https://github.com/Peltoche/lsd

  1. ripgrep: a blazing fast grep tool

https://github.com/BurntSushi/ripgrep

  1. delta: a pager for git, diff and grep

https://github.com/dandavison/delta

  1. bat: alternative to cat

https://github.com/sharkdp/bat

Ref:

  1. broot: alternative to tree

https://github.com/Canop/broot

  1. tokei: alternative to cloc

https://github.com/XAMPPRocky/tokei

Similarly, scc (but written in Go)

  1. hyperfine: commandline benchmark tool

https://github.com/sharkdp/hyperfine

Related

Debugging Wezterm Issues
··138 words·1 min
Nerdfont Icon Missing after Wezterm Upgrade
·172 words·1 min
Benchmarking Your HTTP Service Using wrk
··450 words·3 mins