prev
Text Processing
next
Removing duplicate entries using "uniq"
%
cat stuff.txt
one
one
two
one
%
uniq stuff.txt
one
one
two
one