gpt4 book ai didi

bash - 将文件中每一行的单词填充到临时数组中

转载 作者:行者123 更新时间:2023-12-04 05:13:43 26 4
gpt4 key购买 nike

$ cat file 
line1: Joe Frank tom Jim Michelle Antony
line2: Frank Joe tom Jim Antony Michelle higgs julien
$ arr=`cat file | grep line1`
$ echo $arr
line1: Joe Frank tom Jim Michelle Antony
$ echo ${arr[1]}
line1: Joe Frank tom Jim Michelle Antony

而我预期 Joe作为 echo ${arr[1]} 的输出

有没有最短的方法可以进入临时数组中的每个名称。

最佳答案

怎么样

arr=(`grep line1 file`)

或者更好
read -a arr < <(grep line1 file)

关于bash - 将文件中每一行的单词填充到临时数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14559063/

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