9 lines
199 B
Bash
9 lines
199 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_SegmentHDCommonImage -H 'Host:zhihuitb.zhonganonline.top' | sh
|
|
sleep 1;
|
|
done
|
|
|