1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 15:45:08 +00:00
serenity/Base/usr/share/man/man1/sort.md
2022-07-28 00:44:08 +00:00

246 B

Name

sort - sort lines

Synopsis

$ sort [INPUT]

Description

Sort each lines of INPUT (or standard input). A quick sort algorithm is used.

Examples

$ echo "Well\nHello\nFriends!" | sort
Friends!
Hello
Well