File: make_tld_serv.pl

package info (click to toggle)
whois 4.7.20
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 316 kB
  • ctags: 105
  • sloc: ansic: 1,174; makefile: 122; perl: 83
file content (20 lines) | stat: -rwxr-xr-x 421 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -w

use strict;

while (<>) {
	chomp;
	s/^\s*(.*)\s*$/$1/;
	s/\s*#.*$//;
	next if /^$/;
	die "format error: $_" unless
		(my ($a, $b) = /^([\w\d\.-]+)\s+([\w\d\.:-]+|[A-Z]+\s+.*)$/);
	$b =~ s/^W(?:EB)?\s+/\\x01/;
	$b =~ s/^M(?:SG)?\s+/\\x02/;
	$b = "\\x03" if $b eq 'NONE';
	$b = "\\x04" if $b eq 'CRSNIC';
	$b = "\\x07" if $b eq 'PIR';
	$b = "\\x09" if $b eq 'NICCC';
	print "    \"$a\",\t\"$b\",\n";
}