Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Bug Report: glob qualifier Lm-1 does not work



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