在awk中使用数组变量?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
即使您没有使用单引号,也无法使用在
awk
内生成的值来索引bash
数组(从而阻止bash
进行任何替换)。不过,您可以将数组传入。由于 awk 内部的 split 函数,
A
的元素可能不包含空格或换行符。如果您需要做任何更有趣的事情,请在awk
内部设置数组。(澄清:
bash
在调用您要替换其参数的程序之前替换变量,因此当您在awk 中有
现在要求$1
时bash
使用它来替换A
的特定元素已经太晚了。)You can't index a
bash
array using a value generated insideawk
, even if you weren't using single quotes (thereby preventingbash
from doing any substitution). You could pass the array in, though.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 ofawk
.(Clarification:
bash
substitutes variables before invoking the program whose argument you're substituting, so by the time you have$1
inawk
it's far too late to askbash
to use it to substitute a particular element ofA
.)如果您要对
A
数组进行硬编码,则只需在awk
中对其进行初始化即可If you are going to be hard-coding the
A
array, you can just initialize it inawk
单引号内的 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.
您还可以使用 printf 在单独的行上打印数组的每个元素,并将其通过管道传输到 awk。此代码将简单地从 awk 打印 bash 数组 (bash_arr):
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: