mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 00:35:06 +00:00
246 B
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