moderntools/README.md

4.6 KiB

Modern Unix Tools

Modern problems require modern solutions.

This is a collection of very useful utilities that I've collected by asking the internet "What modern utilities should be a standard part of a modern unixy distro and why?"

Additions and corrections via raised issue or pull requests are welcome.

Utilities

System use and management

  • htop, "a cross-platform interactive process viewer". An htop-like utility called bottom also got some votes.
  • tmux, a terminal multiplexer. Some people mentioned screen, the classic tool in this space, but noted that it's getting pretty long in the tooth and tmux is a pure improvement.
  • HTTPie, a CURL-adjacentish command-line HTTP client for testing and debugging web APIs.
  • glow, a markdown-on-the-command-line tool that looks great. Lowdown is also interesting.
  • fzf, a command-line "fuzzy finder" that a few people suggested.
  • tldr - simplified man pages with practical examples. The world has needed this for a long time.
  • zsh + OhMyZsh + Alacritty: this trifecta came up a lot and it looks pretty amazing.
  • Tree: show you the tree structure of directories, a bit like microdosing on Midnight Commander from back in the day.
  • Broot: better navigation of directory trees.
  • dust: "du on steroids".
  • duf a better df.
  • ripgrep, a line-oriented search tool that recursively searches the current directory for a regex pattern described as a better grep.
  • sd, a better sed.
  • fd, a better find
  • atool, a set of scripts that wrap common compressed-file-format handlers.
  • bat, a "better cat".
  • lsd and exa, both new takes on the venerable ls.
  • There's also zoxide: an interesting update to, of all things, cd!
  • Not really a new thing but a quality of life improvement: the "ducks" alias.
  • ag, the "silver searcher". "Fast ack".
  • mcfly: replaces the usual ctrl-r shell-history search handler with a more powerful tool, super cool.
  • ncdu, friend of htop and a nice disk usage display for the terminal.
  • LazyDocker and LazyGit, CLI improvements for Docker and Git respectively.

Data management

  • Gron, a tool for making JSON greppable.
  • VisiData: a tabular data visualization multitool.
  • jq and jid are both fantastic tools for inspecting and manipulating JSON.
  • duc, also a nice drive-use visualizer.
  • rclone, a cloud-storage data-moving multitool.
  • csvkit: if you spend a lot of time working with comma-separated values, accept no substitutes.
  • matplotlib: the upgrade over gnuplot you've been waiting for.
  • xidel: this looks like jq-for-html, and I'm intrigued.
  • nushell: A structured-data pipeline-building shell. This looks amazing.
  • miller, a CSV multitool.
  • st, "Simple Statistics", a command-line app that calculates the sum, mean, standard deviation, and a few other things about a set of numbers.
  • dyff: diff for yaml.
  • ijq, an "interactive jq".
  • Datamash: Gnu, I know, but an interesting command-line-math tool.

Other collections