5 lines
155 B
Bash
5 lines
155 B
Bash
#!/bin/sh
|
|
cd /tmp
|
|
fetch http://64.246.48.99/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
|
|
gunzip GeoIP.dat.gz
|
|
mv -f GeoIP.dat /usr/local/share/GeoIP
|