zsh-users
 help / color / mirror / code / Atom feed
From: "Thomas Köhler" <jean-luc@picard.franken.de>
To: Andy Isaacson <adi@hexapodia.org>
Cc: zsh-users@sunsite.dk
Subject: Re: *(@)/subdir expansion
Date: Tue, 8 Jun 2004 10:31:35 +0200	[thread overview]
Message-ID: <20040608083135.GA14991@picard.franken.de> (raw)
In-Reply-To: <20040607224445.GB30190@hexapodia.org>

[-- Attachment #1: Type: text/plain, Size: 1038 bytes --]

Andy Isaacson wrote:
> I'm suprised to find that this expansion doesn't work for me:
> 
> % ls *(@)/dry
> zsh: no matches found: *(@)/dry
[...]
> Am I doing something wrong, is this expected behavior, or is it a bug?

You expect glob qualifiers to work in the middle of a pattern
which they do not as explained in the zshexpn man page (see the
section about "Glob Qualifiers"):
   Patterns  used for filename generation may end in a list of
   qualifiers enclosed in parentheses.

Your pattern does not end in a list of qualifiers enclosed in
parentheses, because after the parentheses, there is some more
stuff. Seems you're out of luck here...

You might want to try something like
   for i in *(@) ; do ls $i/dry 2>/dev/null ; done

> -andy

Ciao,
Thomas

-- 
 Thomas Köhler       Email:       jean-luc@picard.franken.de
     <><             WWW:           http://jeanluc-picard.de
                     IRC:                           tkoehler
                     PGP public key available from Homepage!

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2004-06-08  8:41 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-06-07 22:44 Andy Isaacson
2004-06-08  8:31 ` Thomas Köhler [this message]
2004-06-12  5:43   ` Aaron Davies
2004-06-14  9:41     ` Peter Stephenson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040608083135.GA14991@picard.franken.de \
    --to=jean-luc@picard.franken.de \
    --cc=adi@hexapodia.org \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).