我希望始终在laravel / homestead全局使用此功能作为描述 Here
使用此功能:
function homestead() {
( cd ~/Homestead && vagrant $* )}
我使用Ubuntu
它将取代流浪者
最好的问候
答案 0 :(得分:1)
只需将此功能粘贴到.bashrc文件中
即可function hs() {
cd ~/.composer/vendor/laravel/homestead
command="$1"
if [ "$command" = "edit" ]; then
open ~/.homestead/Homestead.yaml
else
if [ -z "$command" ]; then
command="ssh"
fi
vagrant "$command"
fi
cd -
}
然后,您可以从系统中的任何位置拨打hs edit
,hs up
hs ssh
等。
别忘了source ~/.bashrc