zsh-users
 help / color / mirror / code / Atom feed
From: "Jérémie Roquet" <arkanosis@gmail.com>
To: Zsh Users <zsh-users@zsh.org>
Cc: Rory Mulvaney <rorymulv@gmail.com>
Subject: Re: using parameter expansion sorting flags
Date: Thu, 22 Sep 2011 10:32:18 +0200	[thread overview]
Message-ID: <CAFOazANO_TOJeGoMWT-y2NWBDnUTfQ_Vp3XxxnKZLuvXzXYbEA@mail.gmail.com> (raw)
In-Reply-To: <alpine.DEB.2.00.1109220143300.5262@MyComp.rgm-web.net>

Hi Rory,

2011/9/22 Rory Mulvaney <rorymulv@gmail.com>:
> I have a few filenames that I put into an array with:
>
> PNMFILES=( f.*.{Atop,Bbot}.pnm )
>
> the ordered contents of this array become:
>
> f.0009.Atop.pnm f.0010.Atop.pnm f.0011.Atop.pnm f.0012.Atop.pnm
> f.0009.Bbot.pnm f.0010.Bbot.pnm f.0011.Bbot.pnm

That's because you're mixing braces and globbing. What happens first is:
 f.*.{Atop,Bbot}.pnm →  f.*.Atop.pnm f.*.Btop.pnm
then only globbing is performed.

You could have used globbing only, and the “o” flag to have a sorted
array in the first place:
PNMFILES=( f.*.(Atop|Bbot).pnm(on) )

> Now I can't figure out how to order them in an array, using the parameter
> expansion sorting flags n and o, as:
>
> f.0009.Atop.pnm f.0009.Bbot.pnm f.0010.Atop.pnm f.0010.Bbot.pnm
> f.0011.Atop.pnm f.0011.Bbot.pnm f.0012.Atop.pnm
> Also I'd like the resulting resorted array PNMFILES2 to be such that:
>
> echo ${PNMFILES2[2]}
>
> yields:
>
> f.0009.Bbot.pnm
>
> rather than some single character.

PNMFILES2=${(on)PNMFILES}

Best regards,

-- 
Jérémie


      parent reply	other threads:[~2011-09-22  8:32 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-22  6:46 Rory Mulvaney
2011-09-22  7:59 ` Anthony Charles
2011-09-22 12:23   ` Rory Mulvaney
2011-09-22  8:32 ` Jérémie Roquet [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=CAFOazANO_TOJeGoMWT-y2NWBDnUTfQ_Vp3XxxnKZLuvXzXYbEA@mail.gmail.com \
    --to=arkanosis@gmail.com \
    --cc=rorymulv@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).