Initial commit

This commit is contained in:
billz 2020-03-27 13:25:47 +00:00
parent 3d4f12ffa6
commit 584ee2cde0
1 changed files with 21 additions and 0 deletions

21
installers/update_blocklist.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
#
#
# @author billz
# license: GNU General Public License v3.0
# Exit on error
set -o errexit
# Exit on error inside functions
set -o errtrace
# Turn on traces, disabled by default
#set -o xtrace
update_url=$1
file=$2
destination=$3
wget -q ${update_url} -O ${destination}${file} &> /dev/null
echo "$?"