dotfiles/recipes/shell-utils

91 lines
1.6 KiB
Text
Raw Permalink Normal View History

2018-02-22 16:27:37 +00:00
#!/bin/bash
2018-04-12 18:07:33 +00:00
# Description: Useful command-line utilities
2018-02-27 05:15:14 +00:00
set -e
2018-02-22 16:27:37 +00:00
_recipe _path
2018-02-22 16:27:37 +00:00
case $_PLATFORM in
darwin)
_recipe brew
2018-02-22 16:27:37 +00:00
_brew binutils
_brew coreutils
_brew findutils
2018-02-22 16:27:37 +00:00
_brew gawk
_brew gnu-indent
_brew gnu-sed
_brew gnu-tar
_brew gnu-which
2018-02-22 16:27:37 +00:00
# File browsing
_brew tree
_brew ncdu
# File compression
_brew p7zip
# Misc
2018-04-11 03:23:59 +00:00
_brew entr
_brew html-xml-utils
_brew htop
_brew jq
_brew lnav
2021-01-22 00:21:46 +00:00
_brew ripgrep
2018-04-11 03:23:59 +00:00
_brew the_silver_searcher
_brew tig
_brew tmux
_brew rename
_brew watch
# Override BSD tools with GNU variants
for path in $(gfind /usr/local/Cellar -type d -name gnubin); do
_path $path \;
done
;;
2021-02-05 00:05:51 +00:00
arch)
_recipe _arch
# File browsing
_pacman tree
_pacman ncdu
# File compression
_pacman p7zip
_pacman unrar
_pacman unzip
2021-02-05 00:05:51 +00:00
# Misc
_pacman entr
_yay html-xml-utils
_pacman htop
_pacman jq
_yay lnav
_pacman ripgrep
_pacman the_silver_searcher
_pacman tig
_pacman tmux
;;
debian)
_recipe _apt
2018-02-22 16:27:37 +00:00
# File browsing
_apt tree
_apt ncdu
2018-02-22 16:27:37 +00:00
# File compression
_apt p7zip
# Misc
2018-04-11 03:23:59 +00:00
_apt entr
_apt html-xml-utils
_apt htop
_apt jq
_apt lnav
2021-01-22 00:21:46 +00:00
_apt ripgrep
2018-04-11 03:23:59 +00:00
_apt silversearcher-ag
_apt tig
_apt tmux
;;
esac