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.
精彩评论