最佳答案
我似乎无法解决以下if
语句在elif
和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