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

Linux Shell系列教程之(十)Shell for循环

时间:2016-06-14 13:41:52      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

本文是Linux Shell系列教程的第(十)篇,更多Linux Shell教程请看:Linux Shell系列教程

基本任何语言都有自己的循环语句,Shell当然也不例外,今天就为大家介绍下Shell for循环的用法。

技术分享

Shell for循环语法

Shell for循环的语法如下所示

for 变量 in 列表
do
    command1
    command2
    ...
    commandN
done

列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的值依序放入指定的变量中,然后重复执行命令区域(在do和done 之间),直到所有元素取尽为止。

Shell for循环示例

接下来通过示例的方式给大家介绍下Shell for循环的用法。

for loop in one two tree four
do
    echo "I am : $loop"
done

输出结果:

I am : one
I am : two
I am : tree
I am : four

可以顺序输出字符串的单词,示例:

for str in I am linuxdaxue
do
    echo $str
done

输出结果:

I
am
linuxdaxue

可以显示当前目录下的文件,示例:

for file in ./*
do
    echo $file
done

输出结果:

./a.sh
./automake
./automonitor
./crzk
./makedir
./shell_start
./sql
./submit

Shell for循环命令是比较容易掌握的,今天就先给大家介绍到这里。更多Shell教程请看:Linux Shell系列教程


本文由Linux技术达人【daxue】发表在:Linux大学
本文固定链接:Linux Shell系列教程之(十)Shell for循环

Linux Shell系列教程之(十)Shell for循环

标签:

原文地址:http://www.cnblogs.com/waitig/p/5583471.html

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