mirror of
https://github.com/RGBCube/serenity
synced 2025-06-19 10:12:09 +00:00
Base: Add sort(1) man page
This commit is contained in:
parent
281e46e8b3
commit
ef2d4b9ed6
1 changed files with 23 additions and 0 deletions
23
Base/usr/share/man/man1/sort.md
Normal file
23
Base/usr/share/man/man1/sort.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
## Name
|
||||||
|
|
||||||
|
sort - sort lines
|
||||||
|
|
||||||
|
## Synopsis
|
||||||
|
|
||||||
|
```**sh
|
||||||
|
$ sort [INPUT]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Sort each lines of INPUT (or standard input). A quick sort algorithm is used.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ echo "Well\nHello\nFriends!" | sort
|
||||||
|
Friends!
|
||||||
|
Hello
|
||||||
|
Well
|
||||||
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue