1.打开编辑.bash_profile 创建该文件时一般都会选择在当前用户目录下,即Mac下的.bash_profile 文件的路径是 /Users/YourMacUserName/.bash_profile cd ~可直接到/Users/YourMacUserName/目录下 touch .bash_profile创建文件 2.配置别名:这里是我配置git别名和npm别名 alias pl="git pull" alias ps="git push" ...
~/.bash_profile (任意一个文件中添加用户级环境变量) (注:Linux 里面是 .bashrc 而 Mac 是 .bash_profile) 若bash shell是以login方式执行时,才会读取此文件。该文件仅仅执行一次!默认情况下,他设置一些环境变量 设置命令别名alias ll=’ls -la’ 设置环境变量:export PATH=/opt/local/bin:/opt/loc...
1 $ touch .bash_profile 4.使用喜欢的方式编辑`.bash_profile`文件,也可以使用`-e`参数,使用`TextEdit`打开文件 1 $ open -e .bash_profile 5.更新内建命令 1 $ source .bash_profile 向`.bash_profile`中增加命令别名 1 alias restart_network=/Users/mac/.command/RestartNetwork.sh 重启网络 1 2 3...
1.打开编辑.bash_profile 创建该文件时一般都会选择在当前用户目录下,即Mac下的.bash_profile 文件的路径是 /Users/YourMacUserName/.bash_profile cd ~可直接到/Users/YourMacUserName/目录下 touch .bash_profile创建文件 2.配置别名:这里是我配置git别名和npm别名 alias pl="git pull" alias ps="git push" ...
1 我们需要用到alias作为命令别名的设定,首先需要新建一个.bash_profile文件,Mac系统下,推荐用vim直接新建(毕竟,vim在编码世界才是王道),具体的命令是 vim ~/.bash_profile 2 然后,我们在vim的界面视图中定义命令的别名,按键盘的i,进入编辑模式,遵循命令 alias gp="git pull" 即可。3 上一步中,我们...
open ~/.bash_profile 开始编辑,设置别名的格式: alias 别名 = 'cd ~ /xxx/xxx' 例 alias qsyk='cd ~/Desktop/qingsongyike_ios' alias mv='cd ~/Desktop/microvideo_ios' 配置生效 bash下执行source ~/.bash_profile,此条命令是使bash重新载入配置令刚才命令生效 ...
Linux/macOS的控制台里都会有bash,这时你只需要给对应的命令配置别名(alias)就可以了。 同样,zash也有对应的配置,自己研究去吧。 配置步骤 到用户目录下,找到.bash_profile 文件,并编辑 vim ~/.bash_profile image 翻到文件末尾,添加你想设置的alias
1.编辑~/.bash_profile, 通常这个文件是不存在的,那么新建它 ,有的话就打开修改添加。 2.vim ~/.bash_profile添加 alias go=”python /Users/xhat/Downloads/goagent/local/proxy.py” ,这里需要注意的是,等号前后不能出现空格。 3.bash下执行” source ~/.bash_profile “,此条命令是使bash重新载入配置...
语法:alias 【别名】=【命令】。如果alias后面没有值,则是现实所有的命令 下面看下设置:1.新建或打开 ~/.bashrc 在下面设置想要的命令和别名(注意别名的等号两头不能有空格)保存退出 2.使得设置的别名生效 3.让别名永久生效,新建或打开 ~/.bash_profile。 (~/.bash_profile 是terminal每次...
Mac下配置alias,zsh终端命令别名,经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格:aliasst="gitstatus"aliaspull='gitpull'aliaspush='gitpush'