Base: Add missing options to sort man page

This commit is contained in:
Tim Ledbetter 2023-03-11 20:54:53 +00:00 committed by Sam Atkins
parent 0454d655bb
commit 82219d0879

View file

@ -12,6 +12,14 @@ $ sort [INPUT]
Sort each lines of INPUT (or standard input). A quick sort algorithm is used.
## Options
* `-k keydef`, `--key-field keydef`: The field to sort by
* `-u`, `--unique`: Don't emit duplicate lines
* `-n`, `--numeric`: Treat the key field as a number
* `-t char`, `--sep char`: The separator to split fields by
* `-r`, `--reverse`: Sort in reverse order
## Examples
```sh