摘要: #! /bin/sh #while 循环 i=0 count=100 while true do echo {$i} echo $RANDOM if [ $i == $count ] then break fi let "i=i+1" done #for 循环 for i in 1 2 3 4 5 阅读全文
posted @ 2021-11-17 08:55 丶Future 阅读(36) 评论(0) 推荐(0) 编辑