From ef2d4b9ed6b7e69e51a8038cf8a881c88e32b83b Mon Sep 17 00:00:00 2001 From: demostanis Date: Thu, 28 Jul 2022 01:22:57 +0200 Subject: [PATCH] Base: Add sort(1) man page --- Base/usr/share/man/man1/sort.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Base/usr/share/man/man1/sort.md diff --git a/Base/usr/share/man/man1/sort.md b/Base/usr/share/man/man1/sort.md new file mode 100644 index 00000000000..6a0c004bcfc --- /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 +``` +