I have the following strings of data:
07/15/09 19:00:00,07/15/09 19:14:35,1900-WKDAY_INC,KN-ECS,Failed 12
07/15/09 20:00:00,,2000_INC,KN2-DIA-P0001,Missed
but only need the following:
07/15/09 1900-WKDAY_INC,KN-ECS,Failed 12
07/15/09 2000_INC,KN2-DIA-P0001,Missed
When I try to awk out the relevant parts using $2 it hit errors as $2 sees the 20:00:00,,2000_INC,KN2-DIA-P0001,Missed as one column so ignores the whole string. Anyway to correct this ?
07/15/09 19:00:00,07/15/09 19:14:35,1900-WKDAY_INC,KN-ECS,Failed 12
07/15/09 20:00:00,,2000_INC,KN2-DIA-P0001,Missed
but only need the following:
07/15/09 1900-WKDAY_INC,KN-ECS,Failed 12
07/15/09 2000_INC,KN2-DIA-P0001,Missed
When I try to awk out the relevant parts using $2 it hit errors as $2 sees the 20:00:00,,2000_INC,KN2-DIA-P0001,Missed as one column so ignores the whole string. Anyway to correct this ?