shell的for循环

前端之家收集整理的这篇文章主要介绍了shell的for循环前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一 语法
for 变量 in 值1 值2 值3
do
程序
done
二 实战
#!/bin/bash
for i in 1 2 3 4 5
do
echo $i
done
三 测试
[root@localhost shell]# ./shell9.sh
1
2
3
4
5
四 for循环实现解压缩
#!/bin/bash
cd /root/test/
ls *.tar.gz > ls.log
ls *.tgz >> ls.log
for i in $(cat ls.log)
do
tar -zxf $i &>/dev/null
done
rm -rf ls.log
原文链接:https://www.f2er.com/bash/390777.html

猜你在找的Bash相关文章