Help for this page

Select Code to Download


  1. or download this
    open my $FILE1_TEMP, '+>', $file1_temp or die "Could not open $file1_t
    +emp: $!";
    
  2. or download this
    use strict;
    use warnings;
    ...
    seek $ioFile, 0, 0;
    print while <$ioFile>;
    close $ioFile;