huge improvement to generate blocking file
process the file in 2 commands (grep + sed) instead of a loop running on each line the time to generate the file takes 0.235 seconds instead of one hour, making it roughly 15,000 times quicker the output file is exactly the same as with the former method
This commit is contained in:
parent
07be626842
commit
da1a460a64
@ -15,13 +15,9 @@ elif [ -S /tmp/autoconf.sock ] ; then
|
||||
fi
|
||||
|
||||
# generate the new conf
|
||||
curl -s "https://iplists.firehol.org/files/firehol_proxies.netset" | grep -v "^\#.*" |
|
||||
while read entry ; do
|
||||
check=$(echo $entry | grep -E "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/?[0-9]*$")
|
||||
if [ "$check" != "" ] ; then
|
||||
echo "deny ${entry};" >> /tmp/block-proxies.conf
|
||||
fi
|
||||
done
|
||||
curl -s "https://iplists.firehol.org/files/firehol_proxies.netset" | \
|
||||
grep -E "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/?[0-9]*$" \
|
||||
sed 's/^/deny /;s/$/;/' > /tmp/block-proxies.conf
|
||||
|
||||
# check if we have at least 1 line
|
||||
lines="$(wc -l /tmp/block-proxies.conf | cut -d ' ' -f 1)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user