站长资源脚本专栏

Shell脚本之无限循环的两种方法

整理:jimmy2025/1/10浏览2
简介for 实现:复制代码 代码如下:#!/bin/bashset i=0set j=0for((i=0;i<10;))do let "j=j+1" echo "-------------j is $j -------------------"donewhi

for 实现:
复制代码 代码如下:
#!/bin/bash
set i=0
set j=0
for((i=0;i<10;))
do
        let "j=j+1"
        echo "-------------j is $j -------------------"
done

while实现:
复制代码 代码如下:
#!/bin/bash
set j=2
while true
do
        let "j=j+1"
        echo "----------j is $j--------------"
done