From 67b239a49a353f1c699185d23945ec64dd696776 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 9 Sep 2009 22:00:28 +0000 Subject: [PATCH] change \r\n to \n if they occur git-svn-id: svn://nox.esilibrary.com/migration-tools@617 eee7cc8d-164e-4af6-8e1b-092a69004917 --- unicorn/unicorn_patrons_to_tsv.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/unicorn/unicorn_patrons_to_tsv.pl b/unicorn/unicorn_patrons_to_tsv.pl index 7c3ca59..18c5a9e 100755 --- a/unicorn/unicorn_patrons_to_tsv.pl +++ b/unicorn/unicorn_patrons_to_tsv.pl @@ -13,7 +13,7 @@ my %unique_fields; # Load each record while (<>) { - + s/\r\n/\n/g; # print STDERR "Loaded this line: " . $_; # Is this the start of a new record? -- 1.7.2.5