bash – 从grep生成的列表中创建数组

我有一个存储在文件中的线程列表.我可以用grep检索线程名称

$grep "#" stack.out
"MSC service thread 1-8" #20 prio=5 os_prio=0 tid=0x00007f473c045800 nid=0x7f8 waiting on condition [0x00007f4795216000]
"MSC service thread 1-7" #19 prio=5 os_prio=0 tid=0x00007f4740001000 nid=0x7f7 waiting on condition [0x00007f479531b000]
"MSC service thread 1-6" #18 prio=5 os_prio=0 tid=0x00007f4738001000 nid=0x7f4 waiting on condition [0x00007f479541c000]
. . .

由于我需要操作此列表的输出,我需要将这些行存储在Array中.
我发现了一些建议这种方法的例子:

$export my_array=( $(grep "#" stack.out) )

但是,如果我浏览数组,我的早期grep没有得到相同的结果:

$printf '%s\n' "${my_array[@]}"

"MSC
service
thread
1-8"
#20
prio=5
os_prio=0
tid=0x00007f473c045800
nid=0x7f8
waiting
on
condition
[0x00007f4795216000]
"MSC
service
thread
1-7"
#19
prio=5
os_prio=0
tid=0x00007f4740001000
nid=0x7f7
waiting
on
condition
[0x00007f479531b000]

似乎回车正在弄乱我的阵列分配.
任何帮助如何解决它?
谢谢 !

解决方法

这是一个填充数组的反模式!而且,export关键字很可能是错误的.改为使用循环或mapfile:

循环:

my_array=()
while IFS= read -r line; do
    my_array+=( "$line" )
done < <(grep "#" stack.out)

或者使用mapfile(Bash≥4):

mapfile -t my_array < <(grep "#" stack.out)

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...