将命令的输出拆分为bash中的关联数组

前端之家收集整理的这篇文章主要介绍了将命令的输出拆分为bash中的关联数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
输出
/     ext4
/boot ext2
tank  zfs

在每一行上,分隔符是一个空格.我需要一个关联数组,如:

"/" => "ext4","/boot" => "ext2","tank" => "zfs"

怎么在bash中完成?

如果命令输出文件文件中,则:
$declare -A arr=(); while read -r a b; do arr["$a"]="$b"; done <file

或者,您可以将数据直接从命令cmd读取到数组中,如下所示:

$declare -A arr=(); while read -r a b; do arr["$a"]="$b"; done < <(cmd)

构造<(...)是过程替换.它允许我们从命令读取就像我们从文件中读取一样.注意两者之间的空间<是必不可少的. 您可以使用declare -p验证数据是否已正确读取:

$declare -p arr
declare -A arr='([tank]="zfs" [/]="ext4" [/boot]="ext2" )'
原文链接:https://www.f2er.com/bash/385131.html

猜你在找的Bash相关文章