mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-16 16:54:24 +00:00
222 B
222 B
Sort
TL;DR
# Sort given lines.
sort path/to/file
# Sort lines in reverse.
sort -r path/to/file
# Sort lines numerically.
sort -n path/to/file
# Sort lines and remove duplicates.
sort -u path/to/file