我在使用Bash脚本时遇到了一个奇怪的问题。变量NumTMPara
在内部循环中具有正确的值,但在循环之外,值为0?
这是我的剧本:
echo "packet.txt"
cat $SRDB_dir/tpcf.dat | sed -e 's/[\t]/;/g' \
| while read my_line
do
PID_SPID=$(echo $my_line | cut -f1 -d';')
TPCF_NAME=$(echo $my_line | cut -f2 -d';')
NumTMPara=0
cat $SRDB_dir/plf.dat | sed -e 's/[\t]/;/g' | grep ";$PID_SPID;" \
| while read my_line2
do
PCF_NAME=$(echo $my_line2 | cut -f1 -d';')
Param_ID=$(cat $destination/tmparam.txt | sed -e 's/[\t]/;/g' | grep ";$PCF_NAME," | cut -f1 -d ';')
OFFBYTE=$(echo $my_line2 | cut -f3 -d';')
OFFBIT=$(echo $my_line2 | cut -f4 -d';')
Myptc=$(grep $PCF_NAME $SRDB_dir/pcf.dat | sed -e 's/[\t]/;/g' | cut -f5 -d';')
Mypfc=$(grep $PCF_NAME $SRDB_dir/pcf.dat | sed -e 's/[\t]/;/g' | cut -f6 -d';')
WIDTH=$(get_width $Myptc $Mypfc)
PCF_RELATED=""
PCF_DESCR=$(grep "^$PCF_NAME" $SRDB_dir/pcf.dat | sed -e 's/[\t]/;/g' | cut -f2 -d ';')
let NumTMPara=1+${NumTMPara}
#here, the value is correctly reported
echo -e "\t$PCF_NAME\t$Param_ID\t$OFFBYTE\t$OFFBIT\t$WIDTH\t$PCF_RELATED\t$PCF_DESCR \t${NumTMPara}"
packetligne="\t$PCF_NAME\t$Param_ID\t$OFFBYTE\t$OFFBIT\t$WIDTH\t$PCF_RELATED\t$PCF_DESCR"
done
#Why does NumTMPara = 0 ??
echo -e "$PID_SPID\t$TPCF_NAME\t${NumTMPara}"
done
一切都很好......
NCGT0030 14189 16 0 16 TC Packet ID 1
NCGT0040 14190 18 0 16 TC Packet Seq Control 2
NCGT0020 14188 20 0 16 Generic Failure ID 3
NCGB00B4 14074 22 0 32 Data Field Header 4
直到这个:
10512 YCSR271B 0
为什么是0?
答案 0 :(得分:3)
问题是在管道(command1 | command2 | command3
)中,每个命令都在一个单独的子shell中运行。这意味着来自主shell的任何变量都被复制到每个命令的执行环境中,但是命令所做的任何更改都不会被复制回主shell的执行环境。
您有几个选择,但有两个主要选项:
command1 | command2 | while ... do ... done
而不是while ... do ... done < <(command1 | command2)
。这仍将在子shell中运行command1
和command2
,但while
- 循环将在主shell中运行,如您所愿。