Help for this page

Select Code to Download


  1. or download this
    read through the file "$file"
    when a starting session is found
        open the file "$file" again, as file2
        read through file2 until the end of the session is found
    
  2. or download this
    my %session_start;
    my %session_end;
    ...
            };
        }
    };
    
  3. or download this
    for my $session (sort keys %session_start) {
        print "Session: $session - $session_start{ $session } - $session_e
    +nd{ $session }\n";
    };