uniq
Geef de unieke regels uit een invoer of bestand weer. Omdat het geen herhaalde regels detecteert tenzij ze naast elkaar staan, moeten we ze eerst sorteren. Meer informatie: https://www.gnu.org/software/coreutils/manual/html_node/uniq-invocation.html.
sort {{pad/naar/bestand}} | uniq
sort {{pad/naar/bestand}} | uniq {{[-u|--unique]}}
sort {{pad/naar/bestand}} | uniq {{[-d|--repeated]}}
sort {{pad/naar/bestand}} | uniq {{[-c|--count]}}
sort {{pad/naar/bestand}} | uniq {{[-c|--count]}} | sort {{[-nr|--numeric-sort --reverse]}}