Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-08 00:21:51 +00:00
parent 22bb163ffa
commit 4bbaaf8836
16 changed files with 164 additions and 11 deletions

View File

@@ -24,13 +24,13 @@ source: https://github.com/tldr-pages/tldr.git
`sort {{[-n|--numeric-sort]}} {{path/to/file}}`
- Sort `/etc/passwd` by the 3rd field of each line numerically, using ":" as a field separator:
- Sort `/etc/passwd` by the 3rd field of each line numerically, using `:` as a field separator:
`sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3n}} {{/etc/passwd}}`
`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:
`sort {{[-t|--field-separator]}} {{:}} {{[-k|--key]}} {{3,3n}} {{[-k|--key]}} {{4,4g}} {{/etc/passwd}}`
`sort {{[-t|--field-separator]}} : {{[-k|--key]}} 3,3n {{[-k|--key]}} 4,4g /etc/passwd`
- Sort a file preserving only unique lines:
@@ -38,4 +38,4 @@ source: https://github.com/tldr-pages/tldr.git
- Sort a file, printing the output to the specified output file (can be used to sort a file in-place):
`sort {{[-o|--output]}} {{path/to/file}} {{path/to/file}}`
`sort {{[-o|--output]}} {{path/to/output_file}} {{path/to/input_file}}`