Help for this page

Select Code to Download


  1. or download this
    while(<AUTH>) {
       chomp;
    ...
          $sessionID{$4} = 1;
       }
    }
    
  2. or download this
    open(MSG) or die("couldn't open msg log");
    while(<MSG>) {
       chomp;
    ...
    close(MSG);
    
    print $_, "\n" foreach (@matching_lines);