mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
227 B
227 B
Sort
TL;DR
# Sort all given lines.
sort path/to/file
# Sort all lines reverse.
sort -r path/to/file
# Sort lines numerically.
sort -n path/to/file
# Sort lines and remove duplicates.
sort -u path/to/file