开发者

bash alias not able to create

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜