shell 分支/循环
Posted RainDream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 分支/循环相关的知识,希望对你有一定的参考价值。
if((i%2==1)); then patern="Update" else patern="Read" fi
case $1 in "-h") if [ $# -lt 2 ] then helpInfo else errorUse [email protected] fi ;; "-d") if [ $# -lt 2 ] then noDirectory elif [ $# -gt 2 ] then errorUse [email protected] else DIR=$2 fi ;; *) errorUse [email protected] ;; esac
for i in `seq 10` do ... done
------------------->$ seq 2 1 2
------------------->$ seq 1 3 1 2 3
------------------->$ seq 1 2 5 1 3 5
以上是关于shell 分支/循环的主要内容,如果未能解决你的问题,请参考以下文章