Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    }
    close($ifh);
    close($ofh);
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    use File::Copy;
    
    copy('infile.txt', 'outfile.txt') or die("Ooops, i messed up: $!");