andif
に関して、次のステートメントの問題が何であるかを理解できないようです。はまだ開発中であることに注意してください。ステートメントでまだテストできていないため、間違っている可能性が高くなります。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