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

Re: zsh: missing end of name



> /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