dotfiles/tools/macos.sh
2022-12-03 16:26:50 +08:00

20 lines
270 B
Bash

#!/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 $@