1、显示隐藏文件
显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false
mac OS 高版本(10.11之后)的可能没有作用,需要重启Finder
重启Finder指令:killall -KILL Finder
2、删除所有的 .svn 的文件夹
find . -name ".svn" | xargs rm -Rf
3、查找mac启动文件
启动文件在etc 隐藏文件夹中
路径:cmd+shift+g --> /etc
4、查看homebrew安装的包路径
bogon:~ dxl$ brew list oclint
/usr/local/Cellar/oclint/0.13/bin/oclint
。。。/usr/local/Cellar/oclint
5、oclint增加环境变量
5.1、cd /etc
5.2、sudo vi bashrc
5.3、添加(不带有前面的$符号)
$ OCLINT_HOME=path-to-oclint-release
$ export PATH=$OCLINT_HOME/bin:$PATH
5.4、保存
:wq!
5.5、检查是否添加成功
echo $PATH
6、gem sources 镜像变化
新的镜像源:https://gems.ruby-china.com
gem sources --add https://gems.ruby-china.com/ --remove https://gems.ruby-china.org
gem sources -l