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