dotfiles/recipes/shell-utils

44 lines
726 B
Text
Raw Normal View History

2018-02-22 11:27:37 -05:00
#!/bin/bash
set +e
_recipe brew
case $_PLATFORM in
darwin)
2018-02-22 11:27:37 -05:00
_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
;;
*)
_recipe _apt
2018-02-22 11:27:37 -05:00
# File browsing
_apt tree
_apt ncdu
2018-02-22 11:27:37 -05:00
# File compression
_apt p7zip
_apt unrar
;;
esac
2018-02-22 11:27:37 -05:00
# Misc
_brew htop
_brew tig
_brew lnav
_brew tmux
_brew jq