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 分支/循环的主要内容,如果未能解决你的问题,请参考以下文章

浅谈Shell脚本中for循环while循环及case分支语句

SHELL脚本编程进阶

常用python日期日志获取内容循环的代码片段

shell编程进阶

shell 编码语句

shell 分支/循环