zsh-users
 help / color / mirror / code / Atom feed
From: ZyX <kp-pav@yandex.ru>
To: Ray Andrews <rayandrews@eastlink.ca>, Zsh Users <zsh-users@zsh.org>
Subject: Re: easy calling of associative array?
Date: Mon, 02 Nov 2015 02:55:50 +0300	[thread overview]
Message-ID: <1237641446422150@web6m.yandex.ru> (raw)
In-Reply-To: <56369C7B.2030604@eastlink.ca>


02.11.2015, 02:44, "Ray Andrews" <rayandrews@eastlink.ca>:
> test ()
> {
>      eval "baz=\$${1}[key1]"
>      echo $baz
> eval "foo=\$${1}[key2]"
>      echo $foo
> ...
> }
>
> If I want to pass the name of an associative array to a function via
> "$1" and then work with it's keys, the above succeeds but it's sure
> laborious. Is there some way to do the eval just once? So that I can
> end up doing:
>
> if [ "xyz[key1]" = '1' ]; then ...
>
> ... as I experiment, there seems to be no way of replacing 'xyz' with
> any expression that will do the job without needing eval's help every
> time, but I'll bet there's a way.

There is ${(P)} for indirect referencing:

    % foo=path
    % echo ${${(P)foo}[1]} $path[1]
    /home/zyx/.local/bin /home/zyx/.local/bin

. This is in `man zshexpn`.


  reply	other threads:[~2015-11-02  0:01 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-01 23:12 Ray Andrews
2015-11-01 23:55 ` ZyX [this message]
2015-11-02  0:49   ` Ray Andrews
2015-11-02  3:08     ` Bart Schaefer
2015-11-02  3:33       ` Ray Andrews
2015-11-02  6:51         ` Bart Schaefer
2015-11-02 15:43           ` Ray Andrews
2015-11-02 16:28             ` Bart Schaefer
2015-11-02 18:32               ` Ray Andrews
2015-11-02 19:37                 ` ZyX
2015-11-02 22:10                   ` Bart Schaefer
2015-11-02 22:50                     ` Ray Andrews
2015-11-02 21:05                 ` Bart Schaefer
2015-11-02 23:01                   ` Ray Andrews
2015-11-03 15:57                     ` Bart Schaefer
2015-11-04 14:48                       ` Ray Andrews
2015-11-04 16:39                         ` Bart Schaefer
2015-11-04 18:31                           ` Ray Andrews
2015-11-02 19:33             ` ZyX
2015-11-02 23:04               ` Ray Andrews

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=1237641446422150@web6m.yandex.ru \
    --to=kp-pav@yandex.ru \
    --cc=rayandrews@eastlink.ca \
    --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).