Cortes, Miguel wrote: > I have in my .cshrc > alias n 'nedit \!* &' > > Which automatically background nedit any time I use it which is very > frequently. > > How do I make that same alias in .bashrc. > alias n='nedit $@ &' does not work.
More general than aliases I think shell functions work best.
Something like this following:
n() { nedit "$@" & }
Bob
