- 论坛徽章:
- 0
|
关于 sh下的流程嵌套问题,本人不是很清楚,是否可以嵌套,嵌套时流程中的action是否可以用
一对{}括起来,以下是sh的流程控制关键字用法,来自man。麻烦大虾们解析一下,谢谢!
sh
if condition ; then action ; fi
if condition ; then action ; else action2 ; fi
if condition ; then action ; elif condition2 ; then
action2 ; ... ; fi
if condition ; then action ; elif condition2 ; then
action2 ; ... ; else action3 ; fi
test condition
[ condition ]
while [ conditions ] ; do actions ; done
until [ conditions ] ; do actions ; done
for word [ in wordlist ... ] ; do actions ; done
sh
break [ n ]
continue [ n ]
sh
break exits from the enclosing for or while loop, if any. If
n is specified, break n levels.
continue resumes the next iteration of the enclosing for or
while loop. If n is specified, resume at the n-th enclosing
loop.
sh
case word in [ pattern [ | pattern ] ) actions ;;
... ] esac |
|