gpt4 book ai didi

linux - Awk 在 bash 脚本中将数据存储到数组中

转载 作者:太空宇宙 更新时间:2023-11-04 12:42:01 26 4
gpt4 key购买 nike

我想用 Bash 脚本读取一个文件。但我想跳过一些行——例如前两行。这些行应该存储在一个数组中。

我该怎么做?

我试过 awk '2,$ p' $1,但它存储在一个字符串中,而不是数组中。

最佳答案

为什么不用 read 而不是 awk

您可以使用类似于以下内容的内容:

while read b; do
array[i] = $b
done < input.file.txt

关于linux - Awk 在 bash 脚本中将数据存储到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39890551/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com