tags:

views:

48

answers:

3

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

alias bundle-vendor= 'bundle install vendor --disable-shared-gems'
+5  A: 

You need to remove the space after the equal sign.

Dennis Williamson
+1  A: 

Lose the space after the = sign.

xcramps
A: 

Try:

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

It works for me.

Space