Help for this page

Select Code to Download


  1. or download this
    my @country_states;
    for (@logfiles) { 
    ...
    
        print($state, "\n");
    }
    
  2. or download this
    my %states_by_country;
    for (@logfiles) { 
    ...
            print($state, "\n");
        }
    }