Linux Bash-控制语句

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Bash-控制语句相关的知识,希望对你有一定的参考价值。

条件判断:

  单分支if语句

  if 条件表达式; then

    statement

  fi

  双分支if语句

  if 条件表达式; then

    statement

  else

    statement

  fi

  多分支if语句

  if 条件表达式; then

    statement

  elif 条件表达式; then

    statement

    ...

  else

    statement

  fi

循环:

  for 变量 in 列表; do

    循环体

  done

 

以上是关于Linux Bash-控制语句的主要内容,如果未能解决你的问题,请参考以下文章

17.自学Linux之路:bash编程之条件判断语句

Linux基础 7-3 Bash脚本编程--条件判断

Linux基础 7-3 Bash脚本编程--条件判断

求Bash Shell脚本,判定文件是不是存在。

流程控制- if 语句

Linux基础7-9 Bash编程--for循环语句