码迷,mamicode.com
首页 > 系统相关 > 详细

shell-for循环

时间:2016-12-28 12:31:01      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:var   color   log   echo   item   code   value   ...   输出   

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循环

标签:var   color   log   echo   item   code   value   ...   输出   

原文地址:http://www.cnblogs.com/hwaggLee/p/6228453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!