1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/sort.md

37 lines
1.1 KiB
Markdown
Raw Normal View History

# sort
> Sort lines of text files.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/sort-invocation.html>.
- Sort a file in ascending order:
`sort {{path/to/file}}`
- Sort a file in descending order:
2025-03-12 21:05:58 +02:00
`sort {{[-r|--reverse]}} {{path/to/file}}`
- Sort a file in case-insensitive way:
2025-03-12 21:05:58 +02:00
`sort {{-f|--ignore-case}} {{path/to/file}}`
2016-05-10 14:09:55 +01:00
- Sort a file using numeric rather than alphabetic order:
2016-03-30 23:13:36 +08:00
2025-03-12 21:05:58 +02:00
`sort {{[-n|--numeric-sort]}} {{path/to/file}}`
2016-03-30 23:13:36 +08:00
- Sort `/etc/passwd` by the 3rd field of each line numerically, using ":" as a field separator:
2025-03-12 21:05:58 +02:00
`sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3n}} {{/etc/passwd}}`
- As above, but when items in the 3rd field are equal, sort by the 4th field by numbers with exponents:
2025-03-12 21:05:58 +02:00
`sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3,3n}} {{[-k|--key]}} {{4,4g}} {{/etc/passwd}}`
2016-03-30 23:13:36 +08:00
- Sort a file preserving only unique lines:
2025-03-12 21:05:58 +02:00
`sort {{[-u|--unique]}} {{path/to/file}}`
2021-01-04 15:52:10 +01:00
- Sort a file, printing the output to the specified output file (can be used to sort a file in-place):
2025-03-12 21:05:58 +02:00
`sort {{[-o|--output]}} {{path/to/file}} {{path/to/file}}`