首页 > 代码库 > shell 循环

shell 循环

 

for循环:

 

 批量删除.gz结尾的文件:

技术分享

 

 循环打包文件并备份到一个目录下面:

技术分享

find ./ -maxdepth 1 -name "*.gz"

find ./ -maxdepth 1 -d -name "*.gz"

 

批量传输文件:

技术分享

 

 

 while循环语法:

条件不满足就退出

[root@linux1 script]# cat circle.sh
#!/bin/bash
i=0
while [[ $i -lt 4 ]]
do
  echo $i
  ((i++))
done
[root@linux1 script]# sh circle.sh
0
1
2
3

 技术分享

 

 while循环读取文件:(可以配合for循环等批量执行等)

技术分享

 

 

until循环:

条件满足就退出

技术分享

 

shell 循环