Help for this page

Select Code to Download


  1. or download this
    open (INDATA, "master.job.list") or die "Couldn't read file $!\n";
        
            while (<INDATA>) {
    ...
            }
    
    close (INDATA);
    
  2. or download this
    $clientname_temp = "";
     
    foreach $line (@data) {
    ...
    
            $clientname_temp = $clientname; 
    }