I want to get a grep -v command that will remove the rows for that particular string found, without reading into the first row:
orderID,change_timestamp,Condition,State OD10,2017-04-25 07:21:13.069,A,D OD11,2017-04-25 07:21:13.069,A,D orderID,change_timestamp,Condition,State OD14,2017-04-26 07:21:13.069,A,D OD15,2017-04-26 07:21:13.069,A,D orderID,change_timestamp,Condition,State OD16,2017-04-27 07:21:13.069,A,D OD17,2017-04-27 07:21:13.069,A,D
Desired:
orderID,change_timestamp,Condition,State OD10,2017-04-25 07:21:13.069,A,D OD11,2017-04-25 07:21:13.069,A,D OD14,2017-04-26 07:21:13.069,A,D OD15,2017-04-26 07:21:13.069,A,D OD16,2017-04-27 07:21:13.069,A,D OD17,2017-04-27 07:21:13.069,A,D
It would need to output to another file without touching the original.