Help for this page

Select Code to Download


  1. or download this
       $logfile = $file;
       $logfile =~ s/\.asc$/.log/;
    
  2. or download this
       if ($file =~ m{(.*)\.asc}) {
          $logfile = "$1.log";
       }