Help for this page

Select Code to Download


  1. or download this
    if($file =~ m/hd_defect-(.*?)\.(.*)$/) {
       $host = $1;
       $dom = $2;
    }
    
  2. or download this
    if($file =~ m/hd_defect-(.*?)\.?(.*)$/) {
       $host = $1;
       $dom = $2;
    }