Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 185b93eebd1d89fb06c8d6ac23858448 > files > 7

multitail-5.2.6-1.fc14.x86_64.rpm

#!/usr/bin/perl

use Geo::IP;

my $gi = Geo::IP->new(GEOIP_STANDARD);

$| = 1;

while(<>)
{
	chomp($_);

	$country = $gi->country_code_by_addr($_);

	if ($country eq '')
	{
		$country = '?';
	}

	print "$_ ($country)\n";
}