Sort lines of text files. More information: https://www.gnu.org/software/coreutils/manual/html_node/sort-invocation.html.
sort {{path/to/file}}
sort -r {{path/to/file}}
sort --ignore-case {{path/to/file}}
sort -n {{path/to/file}}
sort -t: -k 3n /etc/passwd
sort -u {{path/to/file}}
ls -lh
):ls -lh | sort -h -k 5
sort --general-numeric-sort {{path/to/file}}