bug-bash
[Top][All Lists]
Advanced

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

Re: alias lm='ls \!* | more'


From: Paul Jarc
Subject: Re: alias lm='ls \!* | more'
Date: Wed, 12 Dec 2001 23:59:18 -0500
User-agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.7 (i386-redhat-linux-gnu)

"Hongwei" <holylaker@hotmail.com> wrote:
>   I can use
>
>          alias lm 'ls -l \!* | more'
>
>   in csh, but the same thing can not work in bash:
>
>          alias lm='ls -l \!* | more'

See FAQ entry D4.
unalias lm; lm() { ls -l "$@" | more; }


paul



reply via email to

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