linux 安装 zsh 套装
安装 zsh
1.安装 zsh 软件包和 git
cat /etc/shells
echo $SHELL
##CentOS:
yum -y install git
yum install zsh
##Ubuntu:
sudo apt -y install zsh git
2.克隆 oh-my-zsh
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
##或者
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
3.复制 .zshrc,修改命...
19 post articles, 3 pages.