LINUX 循环脚本

简直就是C语言:

for (( i=0; i<10; i++ ))

do

    echo "The loop index is $i"

done

for test in A B C D E

do

    echo The test is $test

done

猜你喜欢

转载自blog.csdn.net/quantum7/article/details/82048116