zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Zsh Users <zsh-users@sunsite.dk>
Subject: Re: Trouble with zmv and extended globs
Date: Wed, 19 Oct 2005 06:25:15 +0000	[thread overview]
Message-ID: <1051019062516.ZM770@candle.brasslantern.com> (raw)
In-Reply-To: <200510181927.25831.dan.zsh@bullok.com>

On Oct 18,  7:27pm, Dan Bullok wrote:
} varying depths, I try:
} 	zmv -n '(**/con*)(#qe,file ${REPLY}|grep "python script",)' '$1.py'
} which gives me the following error:
} 	zmv:238: bad pattern: (*/*)(#qe,file ${REPLY}|grep python,)

Philippe's answer was almost the correct one.

** is not a shortcut for (*/)#.  **/ is a shortcut for (*/)#.  The slash
must be there, and must immediately follow the two stars, and there must
not be anything but a slash [or open paren] preceding the two stars, or
they do not have special meaning (and are the same as one star).

In fact, Philippe's second example should work:

  zmv -n '(*/)#(con*)(#qe,file ${REPLY}|grep "python script",)' '$1$2.py'

As should:

  zmv -n '(**/)(con*)(#qe,file $REPLY | grep "python script",)' '$1$2.py'

You might want to use "grep -q", though.


  parent reply	other threads:[~2005-10-19  6:25 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-10-19  0:27 Dan Bullok
2005-10-19  1:00 ` Philippe Troin
2005-10-19  1:07 ` Dan Bullok
2005-10-19  6:25 ` Bart Schaefer [this message]
2005-10-19  8:14   ` 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=1051019062516.ZM770@candle.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --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).