From: Ben Ostrowsky Date: Mon, 26 Oct 2009 18:05:56 +0000 (+0000) Subject: Unicorn TSV-maker can now handle bill.data and charge.data too. X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=commitdiff_plain;h=a8016c4258f1e4ca810a00070fe81ee30daf493d;hp=67b239a49a353f1c699185d23945ec64dd696776 Unicorn TSV-maker can now handle bill.data and charge.data too. git-svn-id: svn://nox.esilibrary.com/migration-tools@621 eee7cc8d-164e-4af6-8e1b-092a69004917 --- diff --git a/unicorn/unicorn_patrons_to_tsv.pl b/unicorn/unicorn_patrons_to_tsv.pl index 18c5a9e..6960d49 100755 --- a/unicorn/unicorn_patrons_to_tsv.pl +++ b/unicorn/unicorn_patrons_to_tsv.pl @@ -25,6 +25,11 @@ while (<>) { next; } + # Is this a FORM= line (which can be ignored)? + if ( /^FORM=/ ) { + next; + } + # If this isn't the start of the new record, it's a new line in the present record. $line++;