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