shellLinux shell for 循环详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shellLinux shell for 循环详解相关的知识,希望对你有一定的参考价值。

for 循环格式

for i in 条件
do 
    内容
done

实例
循环1到10并打印

#!/bin/bash -
for i in `seq 10`
do 
        echo $i
done

版权所有:arppinging

以上是关于shellLinux shell for 循环详解的主要内容,如果未能解决你的问题,请参考以下文章

shellLinux shell 之break和continue详解

shellLinux shell之while循环

shellLinux shell 位置变量详解

shellLinux shell 之 case 详解

shellLinux shell if 语句详解

shell 脚本之循环使用 for while 详解