mirror of
https://github.com/rfc1036/whois.git
synced 2026-01-03 06:15:17 +00:00
23 lines
412 B
Perl
Executable File
23 lines
412 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
while (<>) {
|
|
chomp;
|
|
s/^\s*(.*)\s*$/$1/;
|
|
s/\s*#.*$//;
|
|
next if /^$/;
|
|
die "format error: $_" unless (/^([\d\.]+)\/(\d+)\s+([\w\.]+)$/);
|
|
my $m=$2; my $s=$3;
|
|
my ($i1, $i2, $i3, $i4)=split(/\./, $1);
|
|
print "{ ".(($i1<<24)+($i2<<16)+($i3<<8)+$i4)."UL, ".
|
|
(~(0xffffffff>>$m))."UL, \"";
|
|
if ($s =~ /\./) {
|
|
print "$s";
|
|
} else {
|
|
print "whois.$s.net";
|
|
}
|
|
print "\" },\n";
|
|
}
|
|
|