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

Linux Gvim shell for循环

时间:2016-06-09 10:53:08      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

#for循环
#格式
#for 变量 in 列表
#do
#    command1
#    command2
#    ...
#done
#列表是一组值(数字,字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表的下一个值赋给变量
#in 列表是可选的,如果不用它,for循环使用命令行的位置参数,如:顺序输出当前列表的数字

1 for loop in 1 2 3 4 5
2 do
3     echo " The value is : ${loop} "
4 done

#顺序输出字符串中的字符,结果为 This is a string

1 for str in  This is a string 
2 do
3     echo ${str}
4 done

#显示主目录下以 .bash开头的文件

1 for FILE in ${HOME/.bash*}
2 do
3     echo ${FILE}
4 done

 

Linux Gvim shell for循环

标签:

原文地址:http://www.cnblogs.com/blog4matto/p/5572035.html

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