Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Bug Report: glob qualifier Lm-1 does not work
- X-seq: zsh-users 15347
- From: Jérémie Roquet <arkanosis@xxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxx>
- Subject: Re: Bug Report: glob qualifier Lm-1 does not work
- Date: Wed, 1 Sep 2010 18:16:59 +0200
- Cc: Roy Zuo <roylzuo@xxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=V2xae3MoyUviyyOS6DcZ670XhvDzVwGdlLDkDnZW98c=; b=qxKm4IY416wFx1BbDPgW7gaeHHKaDfNz38TK7UAmtKSjTYqO107V8xUrw0eMvBO3xe Vq59WfgQP8h8XMJEA8aOFl/DHKS3tWkPHwiTIIxOZvZmDxEXrcFDX15z3x+A3XBqq3P4 3ZvghjetxjsOEWJtXhp4bAIKkjIc4z2rSR2Sw=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=lZUZCDeX8rH5aDPq5uJIhFCMuLeJKu3/RkwdoFr1Vqn1qwMuHKndRgy1kqYqHp/VTi Wh+LJWViCEzzlwuUpmSEH0Uf5N7Gnfa+rX3Ds0TRDsfpq02ZZXYZr7RbDqvg5SoK3NVh s4k62+SpSRdIgxdIo4B6xtlfy5wXOCr4b4gkA=
- In-reply-to: <20100901155416.GA8509@Lancelot>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <20100901155416.GA8509@Lancelot>
Hi,
2010/9/1 Roy Zuo <roylzuo@xxxxxxxxx>:
> Some one just tells me that glob qualifier Lm-1 in zsh does not work, and I
> can confirm it is true. Whenever you do
>
> ls *(Lm-1)
>
> it complains "no matches found". Lm+1, Lk-1024, Lk-1, Lm-2 all work well. The
> only thing that does not work is Lm-1.
Can't it be because of the minimal file size allowed by your filesystem?
I get :
$ ls *(Lm-1)
zsh: no matches found: *(Lm-1)
$ touch foo
$ ls *(Lm-1)
foo
$ echo -n c >| foo
$ ls *(Lm-1)
zsh: no matches found: *(Lm-1)
--
Jérémie
Messages sorted by:
Reverse Date,
Date,
Thread,
Author