Files
oam/knowledge base/sort.md
Michele Cereda 1e7efd622c Fixed comments
2022-05-05 15:32:06 +02:00

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