summaryrefslogtreecommitdiffstats
path: root/tools/2isdndb.pm
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-09-02 22:32:32 +0000
committerMystery Man <unknown@mandriva.org>2005-09-02 22:32:32 +0000
commitbd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4 (patch)
tree7a03e33fba584c7014f990f1448a337627d50484 /tools/2isdndb.pm
parent4da1048be0a7528a1a9f55e6f87cb2766508473b (diff)
downloaddrakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.gz
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.bz2
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.tar.xz
drakx-backup-do-not-use-bd9ae60ea7df3a2dc09798ea1cba6f55f2c3f0e4.zip
This commit was manufactured by cvs2svn to create tagV10_3_0_53mdk
'V10_3_0_53mdk'.
Diffstat (limited to 'tools/2isdndb.pm')
-rw-r--r--tools/2isdndb.pm25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/2isdndb.pm b/tools/2isdndb.pm
deleted file mode 100644
index 536808706..000000000
--- a/tools/2isdndb.pm
+++ /dev/null
@@ -1,25 +0,0 @@
-open F, "isdndb.txt" or die "file $file not found";
-open G, ">tutu" or die "file $file not found";
-foreach (<F>) {
- s/\#.*//;
-# s/\[City\]\s+National//;
- /\[Country\]\s*(.*)/ and $country = $1;
- /\[City\]\s*(.*)/ and $city = $1;
- /\[Name\]\s*(.*)/ and $name = $1;
- /\[Prefix\]\s*(.*)/ and $prefix = $1;
- /\[ISDN\]\s*(.*)/ and $isdn = $1;
- /\[Encaps\]\s*.*/ and do { defined $dns1 and $dns2=""; };
- /\[Domain\]\s*(.*)/ and $domain = $1;
- /\[DNS\]\s*(.*)/ and ($dns1 ? $dns2 : $dns1) = $1;
- /\[End\]\s*(.*)/ and do { undef $name; undef $prefix; undef $isdn; undef $domain; undef $dns1; undef $dns2; };
- if ($isdn && !$prefix) { $prefix = "" }
- if (defined $name && defined $isdn && defined $domain && defined $dns1 && defined $dns2) {
- print G join("|", $country, $city, join("=>", $name, $prefix . $isdn, $domain, $dns1, $dns2)), "\n";
- undef $name;
- undef $prefix;
- undef $isdn;
- undef $domain;
- undef $dns1;
- undef $dns2;
- }
-}