#Write a script which parses /var/log/messages and generates a CSV with two columns: minute, number_of_messages in sorted time order. #---------- begin sample output ---------- #minute, number_of_messages #Jan 20 03:25,2 #Jan 20 03:26,2 #Jan 20 03:30,2 #Jan 20 05:03,1 #Jan 20 05:20,1 #Jan 20 05:22,6 #---------- end sample output ------------"""