mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-01 20:10:28 +00:00
Base: Add missing options to sort man page
This commit is contained in:
parent
0454d655bb
commit
82219d0879
Notes:
sideshowbarker
2024-07-17 01:10:58 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/82219d0879 Pull-request: https://github.com/SerenityOS/serenity/pull/17813 Reviewed-by: https://github.com/AtkinsSJ ✅
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue