in reply to Question about data structures
Then when someone asks for service 1, you can say:our %services = { '1' => { name => '...', host => { hosta => 1, hostb => 1 }, } '2' => {...} };
Or, you could reverse the roles of the menu item number and the service name if you wanted to make people remember the names ala the service command on linux. Speaking of which, is that an option? If so, it will be better at this sort of thing than home grown code. You could just put a little text menu front on it. But, maybe you don't have that option.my $service = $services{ $user_request }; if ( not $service->{ host }{ $current_host } ) { # error here } else { # real work here }
Phil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Question about data structures
by wishartz (Beadle) on Apr 04, 2007 at 13:50 UTC |