arrays – 将数组传递给awk,其中包含需要打印的列号

前端之家收集整理的这篇文章主要介绍了arrays – 将数组传递给awk,其中包含需要打印的列号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个CSV文件(usvd.csv),其中包含41列,我的bash脚本处理标题行以查看要打印的列,结果是我需要打印41列中的26列.这些可能不同 – CSV中的列数和/或需要打印的列数.

包含需要打印的列数的数组如下:

${UNIQUE[@]} = 1 2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 26 30 35 37 39 40 41

因此,在41列中,我只想打印上面列出的列,它们可能因文件而异.

谢谢!!

解决方法

你可以用cut.请考虑以下示例:
UNIQUE=(1 2 4 6)          # Array containing columns to be printed
fields=$( IFS=,echo "${UNIQUE[@]}")      # Get the fields in comma-delimited form
# seq -s,10 would print the string: 1,2,3,4,5,6,7,8,9,10
seq -s,10 | cut -d,-f"${fields[@]}"     # Print the desired fields

这会导致

1,6
原文链接:https://www.f2er.com/linux/393137.html

猜你在找的Linux相关文章