summaryrefslogtreecommitdiffstats
path: root/make_new_gtlds.pl
diff options
context:
space:
mode:
Diffstat (limited to 'make_new_gtlds.pl')
-rwxr-xr-xmake_new_gtlds.pl17
1 files changed, 17 insertions, 0 deletions
diff --git a/make_new_gtlds.pl b/make_new_gtlds.pl
new file mode 100755
index 0000000..ae8b9ac
--- /dev/null
+++ b/make_new_gtlds.pl
@@ -0,0 +1,17 @@
+#!/usr/bin/perl
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+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|;
+}
+