10 lines
177 B
Bash
10 lines
177 B
Bash
|
|
#!/bin/bash
|
||
|
|
while true; do
|
||
|
|
if [ -f "stop.flag" ]; then
|
||
|
|
break
|
||
|
|
fi
|
||
|
|
curl http://127.0.0.1/index.php/sys/auto_deal_type_vip -H 'Host:zhihuitb.zhonganonline.top'
|
||
|
|
sleep 1;
|
||
|
|
done
|
||
|
|
|