Shell 스 크 립 트 의 무한 순환 방법 두 가지

532 단어 Shell무한 순환
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

좋은 웹페이지 즐겨찾기