consolidating tracking tables for gsheet
[migration-tools.git] / text / join_lines.one-off.001
1 #!/usr/bin/perl -w
2 # so we're wanting our lines to end in <13><10>, ideally, and this is catching lines where isolated <10>'s cause a premature linebreak
3 while (my $line = <>) {
4     $line =~ s/([^\x0D])\x0A$/$1/;
5     print $line;
6 }