The following lines were added (+) and removed (-):
=== unique lines only without changing sort order ===Isolate all of the unique lines from the text file. awk '!seen[$0]++' playeridsduplicates.txt > playerids.txtIf you want them sorted, or are interested in an alternative way of producing only unique lines of text, see: [[uniq]]