zsh-users
 help / color / mirror / code / Atom feed
From: Mikael Magnusson <mikachu@gmail.com>
To: Zsh Users <zsh-users@zsh.org>
Subject: Re: Expand array into multiple elements per item?
Date: Tue, 13 Sep 2011 12:19:55 +0200	[thread overview]
Message-ID: <CAHYJk3RqSJqjHdtu=8yiRBMiSPfxq8OwP9A4cbkCdGydpjefOw@mail.gmail.com> (raw)
In-Reply-To: <20110913095707.28e2d2d1@pwslap01u.europe.root.pri>

On 13 September 2011 10:57, Peter Stephenson <Peter.Stephenson@csr.com> wrote:
>> 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.  You'd probably want "oN" in the
> globbing flags to turn off sorting if you did have files.
>
>> 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:)

One fun thing you can do is use .(e,'reply=(foo bar baz)',) if you
want to use some other globbing flags on your data. It's not
applicable for this problem, at least I can't think of a way. I did
suggest it on irc once for sorting an array by the basename:

22:39 <offbyone> I want to sort this by basename so that I order the
elements in this pair of expansions asciibetically regardless of the
directory they're found in.
22:39 <offbyone> (so, for example, if I had A/02_something
B/01_something B/03_something, it'd come out as B/01_something
A/02_something B/03_something)
22:47 <Mikachu> a=( oneglob anotherglob )
22:47 <Mikachu> echo .(e:'reply=($a)':oe,'REPLY=$REPLY:t',)

It would be nice to have a similar mechanism for sorting arrays maybe :).

Oh wait, I just realized it does work, just do this:

% print -l - .(e:'reply=($somelist)':P:-id:)
-id
a b
-id
c
-id
d e

Obviously, this does qualify in the 'a bit of a hack' category. (And
yes, it does fail if $PWD is chmoded -x, maybe / is a safer bet.)

-- 
Mikael Magnusson


  reply	other threads:[~2011-09-13 10:44 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 [this message]
2011-09-13 17:32     ` Benjamin R. Haskell
2011-09-13 17:21   ` Benjamin R. Haskell

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='CAHYJk3RqSJqjHdtu=8yiRBMiSPfxq8OwP9A4cbkCdGydpjefOw@mail.gmail.com' \
    --to=mikachu@gmail.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).