mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 13:44:24 +00:00
18 lines
227 B
Markdown
18 lines
227 B
Markdown
# Sort
|
|
|
|
## TL;DR
|
|
|
|
```shell
|
|
# 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
|
|
```
|