天天看點

ZSH 終級Shellzsh

zsh 終極shell

參考位址:https://github.com/robbyrussell/oh-my-zsh 俗話說活到老學到老,昨天看一個同僚在用zsh,看上去還挺好的,就做了一下研究。

mac osx: 預設都帶了zsh

ubuntu: apt-get install zsh

centos: yum install zsh

chsh –s $(which zsh)

oh-my-zsh是一個開源的zsh主題庫,可以對zsh進行初始配置 sh -c "$(curl -fssl https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

zsh的配置檔案預設在~/.zshrc,下面這一行是對插件的定義: plugins=(git bundler osx rake ruby) 所有的插件清單在:https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins

主題風格對應的在.zshrc中的字段是: zsh_theme="robbyrussell" 所有的主題風格位址在: https://github.com/robbyrussell/oh-my-zsh/wiki/themes

預設情況,使用者會收到自動更新的提示。如果不需要自動更新,更改下面的字段 disable_auto_update=true 手動更新是: upgrade_oh_my_zsh