mirror of
https://github.com/DictXiong/dotfiles.git
synced 2024-11-24 11:27:00 +08:00
21 lines
405 B
Bash
Executable File
21 lines
405 B
Bash
Executable File
#!/usr/bin/env 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 coreutils
|
|
}
|
|
|
|
router()
|
|
{
|
|
case $1 in
|
|
brew-install ) brew_install ;;
|
|
* ) echo unknown command \"$1\". available: brew-install;;
|
|
esac
|
|
}
|
|
|
|
router "${GOT_OPTS[@]}"
|