开发者

Multiple statements in if else statement in shell scripting

I want to ask is it possible to give multiple statements to开发者_如何转开发 be executed when if condition gets satisfied by doing just

if[condition] then
statements
else
statements
fi

or we have to do something else like using do.....done around that block of statements


Yes you can have multiple statements:

if [ condition ]; then
  echo 'foo'
  echo 'bar'
else
  echo 'hello'
  echo 'world'
fi
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜