noscript/TLD/generate.sh

22 lines
367 B
Bash

#!/bin/bash
BASE=$(dirname "$0")
if [ -f "$1" ]; then
cp "$1" "$BASE/tld_template.js"
fi
pushd "$BASE"
fname=public_suffix_list.dat
nflag=""
if [ -f "$fname" ]; then
nflag="-z $fname"
fi
URL=https://publicsuffix.org/list/$fname
curl -O $nflag "$URL"
if ! grep 'com' "$fname" >/dev/null; then
echo >&2 "$fname empty or corrupt!"
exit 1
fi
./generate.pl
popd