shell2020-04-11 本文已影响0人 ATLSK000 1.for-1 #!/bin/bash for((i=1;i<=10;i++)); do echo $(expr $i \* 3 + 1); sleep 1 done