使用Mac命令别名,提高工做效率

为系统添加命令别名能够提升咱们的工做效率,告别命令繁琐,庸长的的烦恼。git

Mac的~/.bash_profile文件提供了为系统添加命令别名的地方。因此咱们要操做的也是这个文件。github

下面是修改~/.bash_profile文件的步骤。objective-c

在mac中设置命令别名的方法以下:xcode

1.编写或者新建~/.bash_profile文件,并添加经常使用命令别名以下:缓存

#详细打印
alias ll='ls -Alh'
#代码片断目录
alias snip='cd ~/Library/Developer/Xcode/UserData/CodeSnippets'
#XCode代码缓存目录
alias xcodeCC='cd ~/Library/Developer/Xcode/DerivedData'
#显示隐藏文件
alias showAll='defaults write com.apple.finder AppleShowAllFiles -bool true;KillAll Finder'
#关闭隐藏文件
alias showPart='defaults write com.apple.finder AppleShowAllFiles -bool false;KillAll Finder'
#打印IP地址
alias ip='ifconfig en0'
#将OC源码编译成C、C++
alias cc='clang -rewrite-objc'
#将OC源码编译成C、C++
alias cc2='clang -x objective-c -rewrite-objc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk'
注意:“=”两边不要加空格
 
2.:wq保存以后从新打开terminal或者执行命令:source ~/.bash_profile
命令别名GitHub仓库地址: https://github.com/zhfei/aliases
经常使用命令逐步完善中
相关文章
相关标签/搜索