请解释一下为什么最后一个 echo
语句是空白的?我期望 XCODE
在 while 循环中增加到值1:
#!/bin/bash
OUTPUT="name1 ip ip status" # normally output of another command with multi line output
if [ -z "$OUTPUT" ]
then
echo "Status WARN: No messages from SMcli"
exit $STATE_WARNING
else
echo "$OUTPUT"|while read NAME IP1 IP2 STATUS
do
if [ "$STATUS" != "Optimal" ]
then
echo "CRIT: $NAME - $STATUS"
echo $((++XCODE))
else
echo "OK: $NAME - $STATUS"
fi
done
fi
echo $XCODE
I've tried using the following statement instead of the ++XCODE
method
XCODE=`expr $XCODE + 1`
它也不会在 while 语句之外打印。我想我遗漏了一些关于变量作用域的东西,但是 ol’man 页面没有显示给我看。