Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-11 00:21:14 +00:00
parent a75032eb46
commit 17ff6e81d6
4 changed files with 10 additions and 6 deletions

View File

@@ -14,15 +14,15 @@ source: https://github.com/tldr-pages/tldr.git
- Extract a file to a target destination:
`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}`
`gunzip {{[-c|--stdout]}} {{archive.tar.gz}} > {{archive.tar}}`
- Extract a file and keep the archive file:
`gunzip --keep {{archive.tar.gz}}`
`gunzip {{[-k|--keep]}} {{archive.tar.gz}}`
- List the contents of a compressed file:
`gunzip --list {{file.txt.gz}}`
`gunzip {{[-l|--list]}} {{file.txt.gz}}`
- Decompress an archive from `stdin`:

View File

@@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git
- Install a helm chart and generate a name:
`helm install {{repository_name}}/{{chart_name}} --generate-name`
`helm install {{repository_name}}/{{chart_name}} {{[-g|--generate-name]}}`
- Perform a dry run:
@@ -34,4 +34,4 @@ source: https://github.com/tldr-pages/tldr.git
- Install a helm chart passing a custom values file:
`helm install {{name}} {{repository_name}}/{{chart_name}} --values {{path/to/values.yaml}}`
`helm install {{name}} {{repository_name}}/{{chart_name}} {{[-f|--values]}} {{path/to/values.yaml}}`

View File

@@ -20,6 +20,10 @@ source: https://github.com/tldr-pages/tldr.git
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-s|--setup]}}`
- Capture the output of a serial port to a file:
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-C|--capturefile]}} {{path/to/file}}`
- Exit minicom:
`<Ctrl a><x><Enter>`

View File

@@ -25,7 +25,7 @@ source: https://github.com/tldr-pages/tldr.git
`ollama list`
- Pull/Update a specific model:
- Pull a specific model:
`ollama pull {{model}}`