mirror of
https://github.com/DictXiong/dotfiles.git
synced 2025-04-25 04:56:53 +08:00
20 lines
270 B
Bash
Executable File
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 $@
|