mac下使用alias

作者: addstore | 来源:发表于2017-01-24 11:01 被阅读670次

    让高频使用的命令更简单

    功能说明:设置指令的别名。
    语  法:alias [别名]=[指令名称]
    参  数 : 若不加任何参数,则列出目前所有的别名设置。

    使用方法

    1、新建或打开 ~/.bashrc

    vim ~/.bashrc
    

    输入以下内容,这是git常用的几个命令。

    alias pull="git pull"
    alias commit="git commit"
    alias push="git push"
    alias branch="git branch"
    alias check="git checkout"
    alias st="git status"
    

    2、让别名立即生效

    source ~/.bashrc
    

    3、让别名永久生效,新建或打开 ~/.bash_profile。 (~/.bash_profile 是terminal每次打开时就会运行的?)

    vim ~/.bash_profile
    

    在新的一行写入

    source ~/.bashrc
    

    如此就可以愉快的使用简短的别名操作啦~
    如果不设进行第三步骤,重启terminal,我们设置好的别名就失效了,需要手动source ~/.bashrc

    扩展

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

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

    打开sublime

    subl
    

    使用sublime新建一个index.html

    subl index.html
    

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

    相关文章

      网友评论

        本文标题:mac下使用alias

        本文链接:https://www.haomeiwen.com/subject/lqezbttx.html