Update cheatsheets

This commit is contained in:
ivuorinen
2026-01-28 00:23:19 +00:00
parent 8002d01284
commit c3c48cf6e1
4 changed files with 42 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ source: https://github.com/tldr-pages/tldr.git
- Print all the lines which the 10th column value is between a min and a max:
`awk '($10 >= {{min_value}} && $10 <= {{max_value}})'`
`awk '($10 >= {{min_value}} && $10 <= {{max_value}})' {{path/to/file}}`
- Print table of users with UID >=1000 with header and formatted output, using colon as separator (`%-20s` mean: 20 left-align string characters, `%6s` means: 6 right-align string characters):