10 lines
187 B
Bash
10 lines
187 B
Bash
#!/bin/sh
|
||
# 设置执行的持续时间(60秒 = 1分钟)
|
||
cd /app/public
|
||
for i in $(seq 1 29)
|
||
do
|
||
php index.php /index/index/order
|
||
php index.php /index/index/product
|
||
sleep 1
|
||
done
|