mirror of
https://github.com/rfc1036/whois.git
synced 2026-04-03 06:40:52 +00:00
17 lines
201 B
Perl
Executable File
17 lines
201 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
while (<>) {
|
|
chomp;
|
|
s/#.*$//;
|
|
s/^\s+//; s/\s+$//;
|
|
next if /^$/;
|
|
|
|
die "format error: $_" if not /^(xn--[a-z0-9-]+|[a-z]+)$/;
|
|
|
|
print qq| "$_",\n|;
|
|
}
|
|
|