zoukankan      html  css  js  c++  java
  • 使用Mac命令别名,提升工作效率

    为系统添加命令别名可以提高我们的工作效率,告别命令繁琐,庸长的的烦恼。

    Mac的~/.bash_profile文件提供了为系统添加命令别名的地方。所以我们要操作的也是这个文件。

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

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

    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
    常用命令逐步完善中
  • 相关阅读:
    linux-shell编程-1-简介
    linux-tail
    linux-grep
    linux-sort
    linux-sed
    linux-awk
    函数调用
    选择结构和循环结构
    列表字典集合常用函数
    datetime模块
  • 原文地址:https://www.cnblogs.com/zhou--fei/p/10224000.html
Copyright © 2011-2022 走看看