uniq -d <FileName> # print only those lines which are repeated
uniq -c <FileName> # adds the number of occurrences of each line
uniq -u <FileName> # print only those lines which are not at all repeated
uniq -c <FileName> # adds the number of occurrences of each line
uniq -u <FileName> # print only those lines which are not at all repeated
No comments :
Post a Comment