我是靠谱客的博主 勤劳苗条,最近开发中收集的这篇文章主要介绍linux for in 整数,shell 编程for循环总结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

shell编程for循环总结

在shell编程中,循环的执行是将某代码段重复运行多次,常用循环有for、while和until循环,其中for循环经常用于有限次循环,for循环的语法结构有如下两种:

第一种:shell传统for循环语法结构for 变量名 in 变量取值列表;do

指令…

done

其中取值列表通常又有5种方式:

(1)直接给出列表,列表中间用空格隔开

[root@centos7 ~]#for i in 1 3 5;do echo $i;done

1

3

5

(2)整数列表

(a) {start..end}

[root@centos7 ~]#for i in {1..5..2};do echo $i;done

1

3

5

(b)$(seq start  step  end)

[root@centos7 ~]#for i in $(seq 1 2 5);do echo $i;done

1

3

5

(3)返回命令列表

[root@centos7 ~]#mkdir test

[root@centos7 ~]#cd test/

[root@centos7 ~/test]#touch 1.sh

[root@centos7 ~/test]#touch 3.sh

[root@centos7 ~/test]#touch 5.sh

[root@centos7 ~/test]#for i in $(ls);do

最后

以上就是勤劳苗条为你收集整理的linux for in 整数,shell 编程for循环总结的全部内容,希望文章能够帮你解决linux for in 整数,shell 编程for循环总结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部