mac 使用alias(别名)

开发中会用到一些重复、较长的命令,为了使用方便可以将其设置成一个alias

语法
alias [别名]=[指令名称]

注意 =两侧没有空格

使用方法
  • 新建或打开 ~/.bash_profile 配置环境变量
vim ~/.bash_profile

open ~/.bash_profile
  • 添加别名 eg:
alias pull="git pull"
  • 更新 ~/.bash_profile 使其生效
source ~/.bash_profile
扩展使用

使用 alias也可以设置应用程序的别名,方便在terminal打开应用程序 eg:

alias subl='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'

注意 如果程序名包含空格,需要用\ (反斜杠)转义

你可能感兴趣的:(mac 使用alias(别名))