How can I please get this output from file.txt ?Code:$ cat file.txt word4 word2 word4 word2 word3 word1 word1 word3 $
Code:word1 word2 word3 word4
How can I please get this output from file.txt ?Code:$ cat file.txt word4 word2 word4 word2 word3 word1 word1 word3 $
Code:word1 word2 word3 word4
This feels like a homework problem.
sort -u will likely be part of the answer.
Bookmarks