Help for this page

Select Code to Download


  1. or download this
        print "Writing to file: $ofile_name\n";
        $templateTextCopy =~ s{(?: \r\n | \r | \n )}
    ...
        open my $fh, ">", $ofile_name or die "$ofile_name: $!";
        print $fh $templateTextCopy;
        close $fh;