Shell脚本之无限循环的两种方法
发布时间:2016-12-28 来源:查字典编辑
摘要:for实现:复制代码代码如下:#!/bin/bashseti=0setj=0for((i=0;i
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