diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 15:45:37 +0000 |
commit | e0801e6bd6cc1241afafea33ba8ef701fec2e5c5 (patch) | |
tree | b5cf84f45181b3dbc14d58833d88683fb7f3465e /make_new_gtlds.pl | |
parent | Initial commit. (diff) | |
download | whois-upstream.tar.xz whois-upstream.zip |
Adding upstream version 5.5.17.upstream/5.5.17upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'make_new_gtlds.pl')
-rwxr-xr-x | make_new_gtlds.pl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/make_new_gtlds.pl b/make_new_gtlds.pl new file mode 100755 index 0000000..dc7110e --- /dev/null +++ b/make_new_gtlds.pl @@ -0,0 +1,16 @@ +#!/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|; +} + |