首页 > 代码库 > Mac: Alias[设置命令的别名]
Mac: Alias[设置命令的别名]
设置`.bash_profile`
1.打开终端`Terminal`
2.输入命令`cd ~`到用户主目录
$ cd ~
3.生成一个新文件
$ touch .bash_profile
4.使用喜欢的方式编辑`.bash_profile`文件,也可以使用`-e`参数,使用`TextEdit`打开文件
$ open -e .bash_profile
5.更新内建命令
$ source .bash_profile
向`.bash_profile`中增加命令别名
alias restart_network=/Users/mac/.command/RestartNetwork.sh
重启网络
#!/bin/shsudo ifconfig en0 downsudo ifconfig en0 up//RestartNetwork.sh 中的内容
参考:
- http://blog.marslightstudio.com/?p=122
- http://witcheryne.iteye.com/blog/1683484
- http://baike.baidu.com/subview/49616/5092575.htm?fr=aladdin
Mac: Alias[设置命令的别名]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。