Help for this page

Select Code to Download


  1. or download this
    @ARGV = filename.txt;
    
    ...
      /^(\d)\s+time\s+\d{2}\:\d{2}\:\d{2}\s+(\d+)/;
      $hash{$1} = $2;
    }
    
  2. or download this
      
    while(<>)
    {
    ...
        $hash{$1} = $2;
      }
    }
    
  3. or download this
    while(<>)
    {
    ...
       $hash{$1} = $2;
     }
    }