Skip to content

Instantly share code, notes, and snippets.

@kovacs-andras
Created November 14, 2021 10:53
Show Gist options
  • Save kovacs-andras/c9f6949efafbf7a27bdc1535283342df to your computer and use it in GitHub Desktop.
Save kovacs-andras/c9f6949efafbf7a27bdc1535283342df to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use Geo::IP;
my $gi = Geo::IP->open("/usr/share/GeoIP/GeoLiteCountry.dat", GEOIP_STANDARD);
$country = $gi->country_code_by_name($ARGV[0]);
#print $country;
if ($country ne 'US'){
exit(1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment