This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# root 권한획득 | |
echo "$(whoami)" | |
[ "$UID" -eq 0 ] || exec sudo "$0" "$@" | |
# zsh | |
## zsh 교체 | |
chsh -s `which zsh` | |
## oh-my-zsh setup | |
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |