Linux 下安装 zsh

Zsh 是一款功能强大终端(shell)软件,既可以作为一个交互式终端,也可以作为一个脚本解释器。它在兼容 Bash 的同时 (默认不兼容,除非设置成 emulate sh) 还有提供了很多改进。

安装更新过程:

1. 安装 zsh 软件包和 git
1
2
CentOS: yum -y install zsh git
Ubuntu: sudo apt -y install zsh git
2. 克隆 oh-my-zsh
1
2
wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
sh install.sh

执行以上命令即可

1
2
# 旧的方法,不需要使用
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
3. 复制 .zshrc,修改命令提示符样式
1
2
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
ZSH_THEME="ys"
4. 修改 shell 类型
1
chsh -s /bin/zsh

5. 更新 oh-my-zsh

1
omz update

6. 如果要换 oh-my-fish

1
2
3
uninstall_oh_my_zsh
brew install fish
curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.sh | sh

Comments

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×