Help for this page

Select Code to Download


  1. or download this
    use Modern::Perl;
    
    ...
    close $outfh;
    rename "orders.txt", "orders.txt.bak";
    rename "orders.txt.tmp", "orders.txt";
    
  2. or download this
    use strict;
    use warnings;
    ...
        $line = join( "\t", @vals ) . "\n";
    }
    untie @lines;