normal:
echo "a b a b c c c" | tr ' ' '\n'
a
b
a
b
c
c
c
uniq: keine zwei aufeinanderfolgenden sich wiederholenden Zeilen
echo "a b a b c c c" | tr ' ' '\n' | uniq
a
b
a
b
c
sortiert
echo "a b a b c c c" | tr ' ' '\n' | sort
a
a
b
b
c
c
c
sort -u: keine zwei sich wiederholenden Zeilen
echo "a b a b c c c" | tr ' ' '\n' | sort -u
a
b
c
sort / uniq: alle verschieden
echo "a b a b c c c" | tr ' ' '\n' | sort | uniq
a
b
c
zählt verschiedene Vorkommen
echo "a b a b c c c" | tr ' ' '\n' | sort | uniq -c
2 a
2 b
3 c
nur Zeilen, die nicht wiederholt werden (nicht zuerst sortiert)
echo "a b a b c c c" | tr ' ' '\n' | uniq -u
a
b
a
b
nur Zeilen, die nicht wiederholt werden (nach dem Sortieren)
echo "a b a b c c c Z" | tr ' ' '\n' | sort | uniq -u
Z
uniq -d: druckt nur doppelte Zeilen, eine für jede Gruppe
echo "a b a b c c c" | tr ' ' '\n' | uniq -d
c
.. gezählt
echo "a b a b c c c" | tr ' ' '\n' | uniq -dc
3 c