Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        open $fh, '>', "$file.out" or die "$file.out $!";
        print $fh $content
    }
    
  2. or download this
    $content =~ s/^$key$/$echo/gms;
    $content =~ s/$echo/$key/;