summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Base/usr/share/man/man1/sort.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/sort.md b/Base/usr/share/man/man1/sort.md
index 6a0c004bcf..e38e6c6a6c 100644
--- a/Base/usr/share/man/man1/sort.md
+++ b/Base/usr/share/man/man1/sort.md
@@ -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