bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: simple Translation


From: Bob Proulx
Subject: Re: simple Translation
Date: Tue, 26 May 2009 15:24:30 -0600
User-agent: Mutt/1.5.18 (2008-05-17)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]