摘要: until命令格式until test commansdo other commandsdone示例:[root@strong bash_stu]# cat test2.sh #!/bin/bashi=1u... 阅读全文
posted @ 2018-03-31 21:49 追梦男生 阅读(201) 评论(0) 推荐(0)
摘要: 语法结构while命令的基本格式:while test commanddo other commandsdone计数器控制的While循环示例1、打印小于等于10的数[root@strong bash_st... 阅读全文
posted @ 2018-03-31 21:41 追梦男生 阅读(835) 评论(0) 推荐(0)
摘要: bash shell提供了for命令,用于创建通过一系列值重复的循环,for命令的格式为:for var in listdo commandsdone在参数list中提供了一系列用于迭代的 值,变量$var包... 阅读全文
posted @ 2018-03-31 21:35 追梦男生 阅读(612) 评论(0) 推荐(0)