shell循环for-while-seq

shell的bash循环1-100数字 #!/bin/sh while :;do ((++i)) echo $i ((i==100))&&break done #!/bin/sh … 继续阅读 shell循环for-while-seq