Bash解析动态数组并将特定值存储在另一个中

时间:2015-03-17 10:17:21

标签: arrays linux bash parsing

我发送的是一个dbus-send命令,它返回的内容如下:

method return sender=:1.833 -> dest=:1.840 reply_serial=2
   array of bytes [
      00 01 02 03 04 05 
   ]
   int 1
   boolean true

"字节数组" size是动态的,可以包含n个值。

我使用以下命令将dbus-send命令的结果存储在数组中:

array=($(dbus-send --session --print-repl ..readValue))

我希望能够检索包含在字节数组中的值,并且能够在必要时显示其中的一个或全部,如下所示:

data read => 00 01 02 03 04 05
or 
first data read => 00

{array [10]}始终可以访问第一个数据,我认为可以使用如下结构:

IFS=" " read -a array 
for element in "${array[@]:10}"
do
    ...
done

关于如何做到这一点的任何想法?

1 个答案:

答案 0 :(得分:2)

你真的应该使用一些dbus库,比如Net::DBus或类似的东西。

无论如何,对于上面的例子你可以写:

#fake dbus-send command
dbus-send() {
    cat <<EOF
method return sender=:1.833 -> dest=:1.840 reply_serial=2
   array of bytes [
      00 01 02 03 04 05 
   ]
   int 1
   boolean true
EOF
}

array=($(dbus-send --session --print-repl ..readValue))

data=($(echo "${array[@]}" | grep -oP 'array\s*of\s*bytes\s*\[\s*\K[^]]*(?=\])'))

echo "ALL data ==${data[@]}=="
echo "First item: ${data[0]}"
echo "All items as lines"
printf "%s\n" "${data[@]}"

data=($(echo "${array[@]}" | sed 's/.*array of bytes \[\([^]]*\)\].*/\1/'))

echo "ALL data ==${data[@]}=="
echo "First item: ${data[0]}"
echo "All items as lines"
printf "%s\n" "${data[@]}"

用于两个示例打印

ALL data ==00 01 02 03 04 05==
First item: 00
All items as lines
00
01
02
03
04
05