]> git.donarmstrong.com Git - infobot.git/commitdiff
delimiters are gone
authortimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Wed, 30 Oct 2002 07:35:47 +0000 (07:35 +0000)
committertimriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5>
Wed, 30 Oct 2002 07:35:47 +0000 (07:35 +0000)
git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@563 c11ca15a-4712-0410-83d8-924469b57eb5

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";
 }