bash
Bash 是最常见的 shell,Mac 中默认 shell 就是 bash。
[bash官网这篇文章]描述了唤起 bash shell 时加载的不同文件:login shell 加载 \~/.bash_profile ,而non-login shell 加载 \~/.bashrc 。
zsh
很多人的 mac 中会使用 zsh 而不是 bash,一大半是因为 oh-my-zsh 这个配置集,它兼容 bash,还有自动补全等好用的功能。zsh 的配置文件\~/.zshrc
配置:
https://segmentfault.com/a/1190000015283092
https://www.cnblogs.com/tangpg/p/9191391.html
问题:
在服务器上配置的时候,需要输入用户的密码,然后一直有问题..所以没法改为默认的
解决方法:每次用的时候输入zsh
其他插件配置:
1.oh-my-zsh
2.git
3.zsh-autosuggestions(自动补全)
在安装以上插件的时候,直接用:wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
这种方法失败了,所以选择手动安装(成功!)
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc