zsh-users
 help / color / mirror / code / Atom feed
From: "Benjamin R. Haskell" <zsh@benizi.com>
To: Peter Stephenson <Peter.Stephenson@csr.com>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: Expand array into multiple elements per item?
Date: Tue, 13 Sep 2011 13:21:56 -0400 (EDT)	[thread overview]
Message-ID: <alpine.LNX.2.01.1109131309200.10525@hp.internal> (raw)
In-Reply-To: <20110913095707.28e2d2d1@pwslap01u.europe.root.pri>

On Tue, 13 Sep 2011, Peter Stephenson wrote:

> On Tue, 13 Sep 2011 04:15:50 -0400 "Benjamin R. Haskell" wrote:
>
>> Three questions:
>>
>> 1. How can I easily take:
>>      somelist=( 'a b' c 'd e' )
>>
>> and get back:
>>
>>      anotherlist=( -id 'a b' -id c -id 'd e' )
>
> anotherlist=({-id,${^somelist}})

Elegant.  I didn't think about brace expansion.  Thanks, this is what 
I'll use.


>> 2. ...relatedly, I'm confused by the following:
>>
>>      $ somelist=( 'a b' c 'd e' )
>> (i)  $ print -l - $^somelist(e:'reply=( -id $REPLY )':)
>>      zsh: no matches found: a b(e:reply=( -id $REPLY ):)
>> (ii) $ print -l - $^somelist(Ne:'reply=( -id $REPLY )':)
>>      (...nothing printed...)
>>      $
>>
>> Why does neither (i) nor (ii) work?
>
> The main problem is that globbing flags rely on globbing; if there's 
> no matching file, it doesn't work.

I think it's just the fact that the glob is expanded (and thus tested 
for the resultant filenames existing) before the qualifiers that trips 
me up, but yes: Don't use globs on non-files.  Makes sense.


>> 3. I thought I recalled a relatively recent addition to parameter 
>> expansion flags for just this use-case.  But I can't seem to find the 
>> flag in zsh-4.3.12 patchlevel 1.5346.  Still interested in the answer 
>> to the rest, regardless.
>
> You might be thinking of the globbing flag, P.  If you did have files,
> *(P:-id:) would have done what you wanted.  But you don't.  The actual
> effect is a bit bizarre (turning off nomatch):
>
> -id
> a b(P:-id:)
> -id
> c(P:-id:)
> -id
> d e(P:-id:)

Interesting.  Yes.  'P' was the flag I failed to find.

-- 
Thanks,
Ben


      parent reply	other threads:[~2011-09-13 17:22 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-13  8:15 Benjamin R. Haskell
2011-09-13  8:36 ` Anthony Charles
2011-09-13  8:52   ` Benjamin R. Haskell
2011-09-15 18:07     ` Oliver Kiddle
2011-09-13  8:57 ` Peter Stephenson
2011-09-13 10:19   ` Mikael Magnusson
2011-09-13 17:32     ` Benjamin R. Haskell
2011-09-13 17:21   ` Benjamin R. Haskell [this message]

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=alpine.LNX.2.01.1109131309200.10525@hp.internal \
    --to=zsh@benizi.com \
    --cc=Peter.Stephenson@csr.com \
    --cc=zsh-users@zsh.org \
    /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).