开发者

bash alias not able to create

开发者 https://www.devze.com 2022-12-28 21:18 出处:网络
I tried to create an alias in bash but am not able to do. alias bundle-vend开发者_如何学Pythonor= \'bundle install vendor --disable-shared-gems\'

I tried to create an alias in bash but am not able to do.

alias bundle-vend开发者_如何学Pythonor= 'bundle install vendor --disable-shared-gems'


You need to remove the space after the equal sign.


Lose the space after the = sign.


Try:

alias bundle-vendor='bundle install vendor --disable-shared-gems'

It works for me.

0

精彩评论

暂无评论...
验证码 换一张
取 消