Homestead 配置全局的vagrant命令

2019-05-21  本文已影响0人  _不能说的秘密i

这个方法在 windows or mac os是通用的

编辑 ~/.bash_profile

vim ~/.bash_profile
function homestead() {
    ( cd ~/homestead && vagrant $* )
}
source ~/.bash_profile

解析

function 命令名称() {
    ( cd 安装homestead项目的目录 && vagrant $* )
}

测试使用

hs ssh

在任意一个位置, 执行命令,如果使用这个命令能够进入虚拟机,证明配置成功

上一篇下一篇

猜你喜欢

热点阅读