I have a input / input file containing lines with urls like this
https://www.youtube.com/watch?v=VXw6OdVmMpw Mon Nov 2 10:25:32 2015
https://www.youtube.com/watch?v=VXw6OdVmMpw Mon Nov 2 10:27:34 2015
https://www.youtube.com/watch?v=VXw6OdVmMpw Mon Nov 2 10:28:23 2015
I want grep only they exact matched string like if i sed for the last line
which is https://www.youtube.com/watch?v=VXw6OdVmMpw Mon Nov 2 10:28:23 2015
so it will delete the last line only Note : Lines may contain same text at front but different date and time so i need exact match , thanks for understanding .