I have a file containing the following columns Operation,Name,Start_Time,End_time,Status
.
The column Start_Time contains both date and time.
Here is from the table.
Upload | XYZ | 22/10/2014 22:00:00 | 22/10/2014 22:15:10 | finished
Upload | ABC | 22/10/2014 22:10:00 | 22/10/2014 22:30:00 | failed
Upload | EFG | 22/10/2014 23:00:00 | 22/10/2014 23:30:00 | failed
I need to extract the rows whose start_time lies between 22:00:00
and 23:00:00
both inclusive.
I tried using awk command. But couldn't succeed.
Please help.
Thanks in advance.
Shreyas