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
you will find only one that accures one time