在awk中使用数组变量?

发布于 2024-10-26 07:03:35 字数 141 浏览 1 评论 0原文

A=(aaa bbb ccc)    
cat abc.txt | awk '{ print $1, ${A[$1]} }'

我想根据 $1 索引一个数组元素,但是上面的代码在 awk 语法中不正确。有人可以帮忙吗?

A=(aaa bbb ccc)    
cat abc.txt | awk '{ print $1, ${A[$1]} }'

I want to index an array element based on the $1, but the code above is not correct in awk syntax. Could someone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

也只是曾经 2024-11-02 07:03:35

即使您没有使用单引号,也无法使用在 awk 内生成的值来索引 bash 数组(从而阻止 bash进行任何替换)。不过,您可以将数组传入。

A=(aaa bbb ccc)
awk -v a="${A[*]}" 'BEGIN {split(a, A, / /)}
                     {print $1, A[$1] }' <abc.txt

由于 awk 内部的 split 函数,A 的元素可能不包含空格或换行符。如果您需要做任何更有趣的事情,请在 awk 内部设置数组。

awk 'BEGIN {a[1] = "foo bar"  # sadly, there is no way to set an array all
            a[2] = "baz"    } #   at once without abusing split() as above
           {print $1, a[$1] }' <abc.txt

(澄清:bash 在调用您要替换其参数的程序之前替换变量,因此当您在 awk 中有 $1 现在要求 bash 使用它来替换 A 的特定元素已经太晚了。)

You can't index a bash array using a value generated inside awk, even if you weren't using single quotes (thereby preventing bash from doing any substitution). You could pass the array in, though.

A=(aaa bbb ccc)
awk -v a="${A[*]}" 'BEGIN {split(a, A, / /)}
                     {print $1, A[$1] }' <abc.txt

Because of the split function inside awk, the elements of A may not contain spaces or newlines. If you need to do anything more interesting, set the array inside of awk.

awk 'BEGIN {a[1] = "foo bar"  # sadly, there is no way to set an array all
            a[2] = "baz"    } #   at once without abusing split() as above
           {print $1, a[$1] }' <abc.txt

(Clarification: bash substitutes variables before invoking the program whose argument you're substituting, so by the time you have $1 in awk it's far too late to ask bash to use it to substitute a particular element of A.)

压抑⊿情绪 2024-11-02 07:03:35

如果您要对 A 数组进行硬编码,则只需在 awk 中对其进行初始化即可

awk 'BEGIN{A[0]="aaa";A[1]="bbb"}{ print $1, A[$1] }' abc.txt

If you are going to be hard-coding the A array, you can just initialize it in awk

awk 'BEGIN{A[0]="aaa";A[1]="bbb"}{ print $1, A[$1] }' abc.txt
半城柳色半声笛 2024-11-02 07:03:35

单引号内的 awk 程序无法看到 shell 环境变量 A。一般来说,如果使用双引号而不是单引号,则可以进行一些 shell 替换,但这是在调用 awk 之前由 shell 完成的。总的来说,尝试以这种方式组合 shell 和 awk 是一项艰巨的任务。如果可能的话,我会采用 kurumi 的使用 awk 数组的方法。

单引号:一层无法穿透的面纱。
双引号:通常太费力了。
所以选择你的毒药:shell 或 awk。
否则:你的代码可能会犹豫。

Your awk program within single quotes cannot see the shell environment variable A. In general, you can get a little shell substitution to work if you use double quotes instead of single quotes, but that is done by the shell, before awk is invoked. Overall, it is heavy sledding to try to combine shell and awk this way. If possible, I would take kurumi's approach of using an awk array.

Single quotes: an impenetrable veil.
Double quotes: generally too much travail.
So pick your poison: shell or awk.
Otherwise: your code may balk.

潇烟暮雨 2024-11-02 07:03:35

您还可以使用 printf 在单独的行上打印数组的每个元素,并将其通过管道传输到 awk。此代码将简单地从 awk 打印 bash 数组 (bash_arr):

bash_arr=( 1 2 3 4 5 )
printf '%s\n' "${bash_arr[@]}" | 
    awk '    { awk_arr[NR] = $0 }
         END {
             for (key in awk_arr) {
                 print awk_arr[key]
             }
         }'

You can also print each element of the array on separate line with printf and pipe it to awk. This code will simply print bash array (bash_arr) from awk:

bash_arr=( 1 2 3 4 5 )
printf '%s\n' "${bash_arr[@]}" | 
    awk '    { awk_arr[NR] = $0 }
         END {
             for (key in awk_arr) {
                 print awk_arr[key]
             }
         }'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文