我似乎无法弄清楚以下if
语句与elif
and相关的问题是什么then
。请记住,printf
它仍在开发中,我只是无法在声明中对其进行测试,因此很可能是错误的。
我得到的错误是:
./timezone_string.sh: line 14: syntax error near unexpected token `then'
./timezone_string.sh: line 14: `then'
声明是这样的。
if [ "$seconds" -eq 0 ];then
$timezone_string="Z"
elif[ "$seconds" -gt 0 ]
then
$timezone_string=`printf "%02d:%02d" $seconds/3600 ($seconds/60)%60`
else
echo "Unknown parameter"
fi