私は、次の問題どのような動作するように見えることはできません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
then
if
elif
else