偶然间在闲逛的时候,发现了bash-it
,一个社区的bash框架。。
A community bash framework.
包含的东西有
1.下载
git clone https://github.com/revans/bash-it.git ~/.bash_it
2.安装
~/.bash_it/install.sh
3.配置,只需要编辑
~/.bash_profile
下面是一些常用的帮助
bash-it show aliases # shows installed and available aliases
bash-it show completions # shows installed and available completions
bash-it show plugins # shows installed and available plugins
bash-it help aliases # shows help for installed aliases
bash-it help completions # shows help for installed completions
bash-it help plugins # shows help for installed plugins
安装的时候遇到下面的问题
Please install argcomplete to use conda completion
Warning! PATH is not properly set up, '/Users/fdhuang/.rvm/gems/ruby-2.0.0-p353/bin' is not at first place,
usually this is caused by shell initialization files - check them for 'PATH=...' entries,
it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles',
to fix temporarily in this shell session run: 'rvm use ruby-2.0.0-p353'.
sorry, the z plugin is incompatible with the fasd plugin. you may use either, but not both.
wget -O chruby-0.3.8.tar.gz https://github.com/postmodern/chruby/archive/v0.3.8.tar.gz
tar -xzvf chruby-0.3.8.tar.gz
cd chruby-0.3.8/
sudo make install
Please install argcomplete to use conda completion
这个问题可以用下面的命令来解决
sudo pip install argcomplete
sorry, the z plugin is incompatible with the fasd plugin. you may use either, but not both.
这个就需要我们禁用z plugin
用bash-it
的show plugins
来显示插件的状态
bash-it show plugins
bash-it disable plugin z
Warning! PATH is not properly set up, '/Users/fdhuang/.rvm/gems/ruby-2.0.0-p353/bin' is not at first place, usually this is caused by shell initialization files - check them for 'PATH=...' entries, it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles', to fix temporarily in this shell session run: 'rvm use ruby-2.0.0-p353'.
最后这个问题就可以通过
brew doctor
,但是似乎会带来额外的问题。
围观我的Github Idea墙, 也许,你会遇到心仪的项目