Help for this page

Select Code to Download


  1. or download this
    $temp = `Dir $your_directory_here`;
    if($temp =~ m/(\s+)(\d+)( File)(\S{3})(\s+)(\S+)( bytes)/i){
       print "$6 bytes\n";
    }
    
  2. or download this
    ...
       if($temp =~ m/(\s+)(\d+)( bytes)/i){
    ...