-1
Which Linux terminal command to remove duplicate lines of a.txt file?
-1
Which Linux terminal command to remove duplicate lines of a.txt file?
1
my favorite would be:
cat arquivo.txt | sort | uniq > novo-arquivo.txt
but this will reorder the lines. Without changing the order:
cat arquivo.txt | uniq > novo-arquivo.txt
Browser other questions tagged linux
You are not signed in. Login or sign up in order to post.
That’s the one I need -> cat file.txt | Sort | Uniq > new-file.txt Thank you
– Edvilso ACCO