1.快速创建HTTP服务器共享文件
在想要分享的目录下输入以下Python命令:
1
| python -m SimpleHTTPServer 8888
|
然后在浏览器中访问http://xx.xx.xx.xx:8888 就可以访问我们想要共享的目录了,xx.xx.xx.xx是本机的ip地址,8888是HTTP服务监听的端口号。
2.显示和隐藏Mac隐藏文件
显示隐藏文件命令:
1
| defaults write com.apple.finder AppleShowAllFiles -bool true
|
隐藏隐藏文件命令:
1
| defaults write com.apple.finder AppleShowAllFiles -bool false
|
3.Git自动补全
在系统下面运行以下指令来获取脚本:
1
2
| cd ~
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
|
然后,在~/.bash_profile文件中添加一下代码:
1
2
3
| if [ -f ~/.git-completion.bash ];then
. ~/.git-completion.bash
fi
|