I am trying to parse through a log file and in that process I am making a hash table .
In that hash table I want to take the mac-address its corresponding reponse_status and the response date. After that I compare the take a mac-address input from the user . want to compare it with mac-address in the hash table , if the mac-address is there I want to print the corresponding response status and the response date
I am making an hash table in this format
$list{$nas}{$response_status} = $request_date_time
am I right or if wrong how should I proceed
thx