1. 程式人生 > >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/sh

sudo ifconfig en0 down
sudo 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