zsh-users
 help / color / mirror / code / Atom feed
From: Mikael Magnusson <mikachu@gmail.com>
To: Thorsten Kampe <thorsten@thorstenkampe.de>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: How to iterate over an array of associative arrays
Date: Sun, 14 Jul 2013 15:10:22 +0200	[thread overview]
Message-ID: <CAHYJk3QF3Sk0PUjwr_j0OCeALhsWJM64MsB0aeeGhLkxC7osTg@mail.gmail.com> (raw)
In-Reply-To: <kru5ud$fse$1@ger.gmane.org>

On 14 July 2013 14:35, Thorsten Kampe <thorsten@thorstenkampe.de> wrote:
> Hi,
>
> I'd like to iterate over elements of an array. The elements are
> associative arrays. This is my code:
>
> """
> #! /usr/bin/env zsh
> emulate -R zsh
>
> setopt nounset
>
> declare -A elem AssocArr1 AssocArr2
>
> AssocArr1=(key value1)
> AssocArr2=(key value2)
>
> array=($AssocArr1 $AssocArr2)

Do you really want these $ here?

> for elem in $array
>     do echo $elem[key]
> done
> """
>
> ./test.zsh:14: elem[key]: parameter not set

You need to use the (P) flag to access a parameter indirectly.
% foo=(one two)
% bar=foo
% echo $bar[2]
o
% echo ${${bar}[2]}
o
% echo ${${(P)bar}[2]}
two

--
Mikael Magnusson


  reply	other threads:[~2013-07-14 13:10 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-14 12:35 Thorsten Kampe
2013-07-14 13:10 ` Mikael Magnusson [this message]
2013-07-14 13:36   ` Thorsten Kampe
2013-07-14 16:14     ` Valodim Skywalker
2013-07-14 16:49       ` Thorsten Kampe
2013-07-14 17:25         ` Valodim Skywalker
2013-07-14 17:21     ` Peter Stephenson
2013-07-14 19:57       ` Thorsten Kampe
2013-07-14 22:57         ` Bart Schaefer
2013-07-14 18:05     ` Bart Schaefer

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=CAHYJk3QF3Sk0PUjwr_j0OCeALhsWJM64MsB0aeeGhLkxC7osTg@mail.gmail.com \
    --to=mikachu@gmail.com \
    --cc=thorsten@thorstenkampe.de \
    --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).