Base: Add sort(1) man page

This commit is contained in:
demostanis 2022-07-28 01:22:57 +02:00 committed by Brian Gianforcaro
parent 281e46e8b3
commit ef2d4b9ed6
Notes: sideshowbarker 2024-07-17 08:31:27 +09:00

View 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
```