diff options
author | demostanis <demostanis@protonmail.com> | 2022-07-28 01:22:57 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-07-28 00:44:08 +0000 |
commit | ef2d4b9ed6b7e69e51a8038cf8a881c88e32b83b (patch) | |
tree | ec657fed9b7ecfb073a6add4df3d43687bf8bdad /Base/usr | |
parent | 281e46e8b3820da483ee0aa980267ef1ce4b2d54 (diff) | |
download | serenity-ef2d4b9ed6b7e69e51a8038cf8a881c88e32b83b.zip |
Base: Add sort(1) man page
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man1/sort.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/sort.md b/Base/usr/share/man/man1/sort.md new file mode 100644 index 0000000000..6a0c004bcf --- /dev/null +++ b/Base/usr/share/man/man1/sort.md @@ -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 +``` + |