Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: zsh: missing end of name
- X-seq: zsh-users 18493
- From: "Manuel Presnitz" <mpy@xxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Re: zsh: missing end of name
- Date: Wed, 19 Feb 2014 16:19:00 +0100
- Cc: "zzapper" <david@xxxxxxxxxxxxxx>
- In-reply-to: <XnsA2D994E6FE5C2davidrayninfocouk@80.91.229.13>
- 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: <XnsA2D994E6FE5C2davidrayninfocouk@80.91.229.13>
- Reply-to: mpy@xxxxxxx
> /var/www/html ls -ld *.*(u:apache)
> zsh: missing end of name
I think, you should read "name" as "username". The colon defines the delimiter, hence the closing delimiter is missing:
$ ls -ld *.*(u:apache:)
should word. Or alternatively
$ ls -ld *.*(u+apache+)
as the delimiter can be any of those:
- : / % +
Greets,
Manuel.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author