欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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编程---for循环

相关标签: Shell Script