正文开始
[md]
#!/bin/bash step=5 #间隔的秒数,不能大于60 for (( i = 0; i < 60; i=(i+step) )); do $(wget -q --delete-after 'http://') & sleep $step done exit 0
正文结束