Help for this page

Select Code to Download


  1. or download this
    use File::Replace 'replace2';
     
    ...
    }
    close $infh;   # closing both handles will
    close $outfh;  # trigger the replace
    
  2. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
    close $ifh;
    close $tfh;
    die "Marker not found" unless $found;