Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-04 00:18:21 +00:00
parent 46b75bdb29
commit 7bb915f683
11 changed files with 192 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# choose
> A human-friendly and fast alternative to cut and (sometimes) awk.
> More information: <https://github.com/theryangeary/choose>.
> More information: <https://github.com/theryangeary/choose#usage>.
- Print the 5th item from a line (starting from 0):
@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Print the first, 3rd, and 5th item from a line, where items are separated by ':' instead of whitespace:
`choose --field-separator '{{:}}' {{0}} {{2}} {{4}}`
`choose {{[-f|--field-separator]}} '{{:}}' {{0}} {{2}} {{4}}`
- Print everything from the 2nd to 5th item on the line, including the 5th:
@@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git
- Print everything from the 2nd to 5th item on the line, excluding the 5th:
`choose --exclusive {{1}}:{{4}}`
`choose {{[-x|--exclusive]}} {{1}}:{{4}}`
- Print the beginning of the line to the 3rd item:
@@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git
- Print all items from the beginning of the line until the 3rd item (exclusive):
`choose --exclusive :{{2}}`
`choose {{[-x|--exclusive]}} :{{2}}`
- Print all items from the 3rd to the end of the line: