dotfiles/tools/macos.sh
xiongdian.me 3aadc442b8 bug fix
2022-12-03 17:51:18 +08:00

20 lines
270 B
Bash
Executable File

#!/bin/bash
set -e
brew_install()
{
brew update
brew install git zsh curl tmux vim util-linux
}
router()
{
case $1 in
brew-install ) brew_install ;;
* ) echo unknown command "$1". available: brew-install;;
esac
}
router $@