anti-AD/start.sh

47 lines
1009 B
Bash
Raw Normal View History

2019-04-04 16:22:37 +08:00
#!/bin/bash
2018-10-04 21:37:00 +08:00
source /etc/profile
2018-10-08 10:59:06 +08:00
cd $(cd "$(dirname "$0")";pwd)
2018-10-10 09:23:35 +08:00
git pull
2018-10-08 10:59:06 +08:00
2018-10-04 21:37:00 +08:00
echo '开始下载 easylist1...'
2019-09-04 19:46:50 +08:00
wget -O easylistchina+easylist.txt --timeout 30 https://easylist-downloads.adblockplus.org/easylistchina+easylist.txt
2018-10-04 21:37:00 +08:00
if [ $? -ne 0 ];then
echo '下载失败,请重试'
exit 1
fi
2019-09-04 19:46:50 +08:00
echo '开始下载 easylist2...'
wget -O cjx-annoyance.txt --timeout 30 https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt
2018-10-04 21:37:00 +08:00
2019-09-04 19:46:50 +08:00
if [ $? -ne 0 ];then
echo '下载失败,请重试'
exit 1
fi
2018-10-04 21:37:00 +08:00
echo '开始下载 hosts1...'
wget -O hosts1 --timeout 30 https://hosts.nfz.moe/full/hosts
if [ $? -ne 0 ];then
echo '下载失败,请重试'
exit 1
fi
echo '开始下载 hosts2...'
wget -O hosts2 --timeout 60 https://raw.githubusercontent.com/vokins/yhosts/master/hosts
if [ $? -ne 0 ];then
echo '下载失败,请重试'
exit 1
fi
PHP_RET=$(/usr/local/php/bin/php make-addr.php)
2018-10-10 09:23:35 +08:00
git add adblock-for-dnsmasq.conf
git commit -am "auto commit. script output--- $PHP_RET"
2018-10-10 09:23:35 +08:00
git push --force
2019-05-05 17:55:35 +08:00