zsh
zsh可以提供命令参数自动补全和提示.和传统的TAB补全不同,传统的TAB补全并不会提示命令参数。让命令不再成为负担,总之这是一款提供生产力的工具。
步骤一. 替换yum的源为阿里云
- 先备份之前的源配置。
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
- 下载阿里源配置。
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
- 生成缓存。
yum makecache
步骤二.安装git
yum install git
步骤三. 安装zsh,并设置为默认shell
- 安装zsh。
yum -y install zsh
- 设置zsh为默认shell。
chsh -s /bin/zsh
- 重启centos。
reboot
步骤四. 安装on my zsh
- 安装。
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
举例子
tar 命令
如果你忘记了tar命令的参数, 在敲TAB后,会自动列出参数。并且说明每个参数的作用,如下。