環境
系統要求: 如果是windows的話, 需要安裝 git
編輯 ~/.bash_profile
-
找到家目錄下的
.bash_profile
加入以下內容,沒有可以新建一個vim ~/.bash_profile
-
輸入以下內容
function homestead() { ( cd ~/homestead && vagrant $* ) }
-
重新載入這個檔案
source ~/.bash_profile
解析
- 中文部分是可變的部分, 中文是解釋
function 命令名稱() { ( cd 安裝homestead專案的目錄 && vagrant $* ) }
- 命令名稱: 不一定非得是
homestead
如果覺得長, 可以使用hs
或者其他的, 這個類似於命令別名
- 安裝homestead專案的目錄: 這是你
homestead
專案的絕對路徑
測試使用
- 我這裡配置命令是
hs
hs ssh
在任意一個位置, 執行命令,如果使用這個命令能夠進入虛擬機器,證明配置成功