bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "${assoc[@]@k}" doesn't get expanded to separate words within compou


From: Oğuz
Subject: Re: "${assoc[@]@k}" doesn't get expanded to separate words within compound assignment syntax
Date: Sun, 24 Mar 2024 21:24:48 +0200

On Sunday, March 24, 2024, Greg Wooledge <greg@wooledge.org> wrote:

> Conceptually that looks great, but how do you avoid "Argument list
> too long" with larger inputs?


    $ declare -A a=([x]=1 [y]=2)
    $ printf '%s\0' "${a[@]@k}" | xargs -0 jq --args -n '$ARGS.positional |
_nwise(2) | {(.[0]): .[1]}' | jq -s add
    {
      "y": "2",
      "x": "1"
    }


-- 
Oğuz


reply via email to

[Prev in Thread] Current Thread [Next in Thread]