mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02: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