cxgj/commands/order_2.sh
2023-11-27 09:45:13 +08:00

7 lines
174 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
step=2 #间隔的秒数不能大于60
for (( i = 0; i < 60; i=(i+step) )); do
/www/wwwroot/wwwroot/cxgyc/yii script-while-order
sleep $step
done
exit 0