The line I seek is stored in the file data.txt and is the only line of text that occurs only once.
How do I go about finding that particular line using linux?
sort data.txt | uniq -c | grep 1\ ?*
and it will print the only text that occurs only one time do not forget to put space after the backslash