资讯

Iâ ve got a script called loop.sh. It contains a for loop that prints the iteration of the loop, then sleeps for a second. It does this ten times. #!/bin/bash for (( i=1; i<=10;i+=1)) We can ...