shell的for循环语句

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell的for循环语句相关的知识,希望对你有一定的参考价值。

for循环默认以空格分割

[[email protected] ~]$ cat test2.sh
#!/bin/bash

for i in 1 2 3 4 5
do
    echo $i
done

echo "循环结束!"

[[email protected] ~]$ ./test2.sh
1
2
3
4
5

循环结束!

[[email protected] ~]$ 









本文出自 “小莫” 博客,请务必保留此出处http://xiaofengmo.blog.51cto.com/10116365/1744949

以上是关于shell的for循环语句的主要内容,如果未能解决你的问题,请参考以下文章

shell if 语句

shell编程之case分支语句,for循环语句和while循环语句

Shell脚本之forwhile循环语句和case分支语句

Shell编程Shell中for循环while循环until循环语句

Shell编程Shell中for循环while循环until循环语句

shell的for循环语句