dotfiles/tools/macos.sh
xiongdian.me bb1e012664 fix ci
2023-01-05 21:35:20 +08:00

21 lines
387 B
Bash
Executable File

#!/bin/bash
set -e
THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]:-${(%):-%x}}" )" && pwd )
source "$THIS_DIR/common.sh"
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 "${GOT_OPTS[@]}"