sort
Sorteer regels van tekstbestanden. Meer informatie: https://www.gnu.org/software/coreutils/manual/html_node/sort-invocation.html.
sort {{pad/naar/bestand}}
sort {{[-r|--reverse]}} {{pad/naar/bestand}}
sort {{-f|--ignore-case}} {{pad/naar/bestand}}
sort {{[-n|--numeric-sort]}} {{pad/naar/bestand}}
/etc/passwd
numeriek op het 3e veld van elke regel, gebruik makend van ":" als veldscheidingsteken:sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3n}} {{/etc/passwd}}
sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3,3n}} {{[-k|--key]}} {{4,4g}} {{/etc/passwd}}
sort {{[-u|--unique]}} {{pad/naar/bestand}}
sort {{[-o|--output]}} {{pad/naar/bestand}} {{pad/naar/bestand}}