]> git.donarmstrong.com Git - infobot.git/blobdiff - scripts/dbm2txt.pl
move to channel html and colorize more msgs
[infobot.git] / scripts / dbm2txt.pl
index 796a6eccb8c55ff95c16f3827a6ec6edd4e72e08..259e6cecbe4d8ff38f712c64e0fb178a3afb71bb 100755 (executable)
@@ -18,7 +18,6 @@ if (0) {
 dbmopen(%db, $dbfile, 0644) or die "error: cannot open db. $dbfile\n";
 my ($key, $val);
 while (($key, $val) = each %db) {
-  next if /=>/;                # skip the key if it contains the delimiter.
   chomp $val;
   print "$key => $val\n";
 }