From: timriker Date: Wed, 30 Oct 2002 07:35:47 +0000 (+0000) Subject: delimiters are gone X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=59bdda12d13ba1350383259709dd63161cc61895;p=infobot.git delimiters are gone git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@563 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/scripts/dbm2txt.pl b/scripts/dbm2txt.pl index 796a6ec..259e6ce 100755 --- a/scripts/dbm2txt.pl +++ b/scripts/dbm2txt.pl @@ -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"; }