Ran into an issue that I couldnt solve. Say I have a text file with thousands of entries such as:
12.04.2013 krispy
11.2.2013 krispy
11.2.2013 peter
11.2.2013 william
23.4.2014 krispy
How can I select and permute unique so that only 1 date for krispy is selected (doesnt matter which), so that the output is:
12.04.2013 krispy
11.2.2013 peter
11.2.2013 william
Meaning somehow I'm selecting the 2nd value after the " " space character and permuting it to remove the entire line.
Any help would be great, thanks!