Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    close ORIG;
    close TEMP or die "Unable to close output file: $!\n";
    rename $tempfile, $origfile;
    
  2. or download this
    use strict;
    use warnings;
    ...
        unshift @array, $string;
        untie @array;
    }