mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-02 00:42:45 +01:00
34 lines
1.4 KiB
Bash
Executable File
34 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script assumes a linux environment
|
|
|
|
TEMPFILE=/tmp/ublock-asset
|
|
|
|
echo "*** uBlock: updating remote assets..."
|
|
|
|
declare -A assets
|
|
assets=(
|
|
['thirdparties/easylist-downloads.adblockplus.org/easylist.txt']='https://easylist-downloads.adblockplus.org/easylist.txt'
|
|
['thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt']='https://easylist-downloads.adblockplus.org/easyprivacy.txt'
|
|
['thirdparties/mirror1.malwaredomains.com/files/justdomains']='http://mirror1.malwaredomains.com/files/justdomains'
|
|
['thirdparties/pgl.yoyo.org/as/serverlist']='https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&startdate%5Bday%5D=&startdate%5Bmonth%5D=&startdate%5Byear%5D=&mimetype=plaintext'
|
|
['thirdparties/publicsuffix.org/list/effective_tld_names.dat']='https://publicsuffix.org/list/effective_tld_names.dat'
|
|
['thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt']='https://www.malwaredomainlist.com/hostslist/hosts.txt'
|
|
)
|
|
|
|
for i in "${!assets[@]}"; do
|
|
localURL="$i"
|
|
remoteURL="${assets[$i]}"
|
|
echo "*** Downloading ${remoteURL}"
|
|
if wget -q -T 30 -O $TEMPFILE -- $remoteURL; then
|
|
if [ -s $TEMPFILE ]; then
|
|
if ! cmp -s $TEMPFILE $localURL; then
|
|
echo " New version found: ${localURL}"
|
|
if [ "$1" != "dry" ]; then
|
|
mv $TEMPFILE $localURL
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
done
|