目录
命令下载
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
卸载命令
uninstall_oh_my_zsh
注意
终端init的时候并不会执行~/.bash_profile、~/.bashrc等脚本了,
这是因为其默认启动执行脚本变为了~/.zshrc。
解决办法就是修改~/.zshrc文件,在其中添加:
source ~/.bash_profile
source ~/.bashrc
然后执行
source ~/.zshrc