shell编程---for循环
程序员文章站
2022-07-10 11:18:50
...
for循环
1 #! /bin/bash
2 #for looping structure
3 for i in 1.txt 2.txt
4 do
5 echo $i
6 done
7
8
9 for i in *.sh
10 do
11 echo $i
12 done
上一篇: shell脚本编程 变量初值处理、expect交互
下一篇: Java变量、常量、作用域