Bash变量连接在循环内失败

时间:2013-02-27 18:33:25

标签: string bash variables concatenation

鉴于以下陈述:

ac_reg_ids="-1" #Starting value
(mysql) | while read ac_reg_id; do
    echo "$ac_reg_id" #variable is a result of a mysql query. Echoes a number.
    ac_reg_ids="$ac_reg_ids, $ac_reg_id" #concatenate a comma and $ac_reg_id, fails.
done
echo "ac_reg_ids: $ac_reg_ids" #echoes -1

现在根据这个答案:https://stackoverflow.com/a/4181721/1313143

连接应该有效。但是为什么不呢?循环中有什么不同?

以防万一重要:

  

> bash -version
  > GNU bash,版本4.2.8(1)-release(i686-pc-linux-gnu)

更新

使用set -eux:

输出
+ echo 142
142
+ ac_reg_ids='-1, 142'
+ read ac_reg_id

1 个答案:

答案 0 :(得分:5)

就像shellcheck一样有用的指出,你在子shell中修改ac_reg_ids。

重写它以避免子shell:

ac_reg_ids="-1" #Starting value
while read ac_reg_id; do
    echo "$ac_reg_id" 
    ac_reg_ids="$ac_reg_ids, $ac_reg_id"
done < <( mysql whatever )  # Redirect from process substution, avoiding pipeline
echo "ac_reg_ids: $ac_reg_ids"