Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: globbing and quoting in a function
- X-seq: zsh-users 9108
- From: Doug Kearns <dougkearns@xxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: globbing and quoting in a function
- Date: Wed, 20 Jul 2005 00:59:55 +1000
- In-reply-to: <m0k6jmna5n.fsf@xxxxxxxxxx>
- Mail-followup-to: zsh-users@xxxxxxxxxx
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <m0k6jmna5n.fsf@xxxxxxxxxx>
On Tue, Jul 19, 2005 at 04:27:32PM +0200, Stefan Reichör wrote:
> Hi!
>
> I use the following alias to show the last 30 files changed:
>
> alias lsnew='ls -tr -dl *(om[1,30])'
>
>
> Now I want to convert it to a function to specify the '*' as
> parameter:
>
> I tried the following, but the $1 is not combined with the glob
> modifier.
>
> function lsnew () {
> ls -tr -dl $1(om[1,30])
ls -tr -dl $~1(om[1,30])
> }
>
>
> So is there a way to make 'lsnew a*' work?
You'll need to quote the * as well. For example,
lsnew a\*
Regards,
Doug
Messages sorted by:
Reverse Date,
Date,
Thread,
Author