mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-07 13:15:12 +02:00
12 lines
240 B
Bash
Executable File
12 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
timestamp=$(date "+%Y-%m")
|
|
|
|
wget -q "https://download.db-ip.com/free/dbip-country-lite-${timestamp}.csv.gz"
|
|
|
|
zcat dbip-country-lite-${timestamp}.csv.gz > dbip-country-lite.csv
|
|
|
|
rm -f dbip-country-lite-${timestamp}.csv.gz
|
|
|
|
exit 0
|