shell-for循环

Posted y酒味i

tags:

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

sheel语言for循环格式

for var in item1 item2 ... itemN
do
    command1
    command2
    ...
    commandN
done

 

案例1

#!/bin/bash
for v in 1 2 3 4 5
do
    echo "The value is: $v"
done

输出

The value is: 1
The value is: 2
The value is: 3
The value is: 4
The value is: 5

 

案例2,与数组配合

#!/bin/bash
datatime=(1 2 3 4 5)
echo ${datatime[0]}
for v in ${datatime[@]}
do
    echo "The value is: $v"
done

 

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

shell-for循环

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

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

AVKit – 视频片段仅循环 2 次

如何使用事件侦听器来加载动画片段的循环

c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围