#!/bin/bash # Description: Useful command-line utilities set -e _recipe brew case $_PLATFORM in darwin) _brew binutils _brew coreutils _brew findutils --with-default-names _brew gawk _brew gnu-indent --with-default-names _brew gnu-sed --with-default-names _brew gnu-tar --with-default-names _brew gnu-which --with-default-names # File browsing _brew tree _brew ncdu # File compression _brew p7zip _brew unrar # Misc _brew entr _brew htop _brew jq _brew lnav _brew the_silver_searcher _brew tig _brew tmux _brew rename _brew watch ;; *) _recipe _apt # File browsing _apt tree _apt ncdu # File compression _apt p7zip _apt unrar # Misc _apt entr _apt htop _apt jq _apt lnav _apt silversearcher-ag _apt tig _apt tmux ;; esac