Update cheatsheets

This commit is contained in:
ivuorinen
2025-09-29 00:19:50 +00:00
parent 370df82bda
commit 883e910225
10 changed files with 23 additions and 19 deletions

View File

@@ -16,10 +16,6 @@ source: https://github.com/tldr-pages/tldr.git
`chainctl auth logout`
- Check which version you have installed:
`chainctl version`
- Update to the latest version:
`chainctl update`
@@ -39,3 +35,7 @@ source: https://github.com/tldr-pages/tldr.git
- List package version data from repositories available to your account (e.g.,package_name=go):
`chainctl packages versions list {{package_name}}`
- Display version:
`chainctl version`

View File

@@ -16,10 +16,10 @@ source: https://github.com/tldr-pages/tldr.git
`django-admin startapp {{app_name}}`
- Check the current version of Django:
`django-admin --version`
- Display help for a specific command:
`django-admin help {{command}}`
- Display version:
`django-admin --version`

View File

@@ -30,6 +30,6 @@ source: https://github.com/tldr-pages/tldr.git
`fastd --show-key {{[-c|--config]}} {{path/to/fastd.conf}}`
- Show the current version:
- Display version:
`fastd {{[-v|--version]}}`

View File

@@ -21,6 +21,6 @@ source: https://github.com/tldr-pages/tldr.git
`hg help {{command}}`
- Check the Mercurial version:
- Display version:
`hg --version`

View File

@@ -25,6 +25,6 @@ source: https://github.com/tldr-pages/tldr.git
`lilypond {{[-o|--output]}} {{path/to/output_file}} {{path/to/input_file}}`
- Show the current version of lilypond:
- Display version:
`lilypond {{[-v|--version]}}`

View File

@@ -20,10 +20,10 @@ source: https://github.com/tldr-pages/tldr.git
`vlock {{[-a|--all]}}`
- Show help:
- Display help:
`vlock {{[-h|--help]}}`
- Show version:
- Display version:
`vlock {{[-v|--version]}}`

View File

@@ -8,7 +8,7 @@ source: https://github.com/tldr-pages/tldr.git
> Bump a node package version.
> More information: <https://docs.npmjs.com/cli/npm-version>.
- Check current version:
- Display version:
`npm version`

View File

@@ -13,10 +13,6 @@ source: https://github.com/tldr-pages/tldr.git
`puppet {{subcommand}}`
- Check the Puppet version:
`puppet --version`
- Display help:
`puppet --help`
@@ -24,3 +20,7 @@ source: https://github.com/tldr-pages/tldr.git
- Display help for a subcommand:
`puppet help {{subcommand}}`
- Display version:
`puppet --version`

View File

@@ -37,6 +37,6 @@ source: https://github.com/tldr-pages/tldr.git
`rails console`
- Check current version of rails:
- Display version:
`rails {{[-v|--version]}}`

View File

@@ -23,3 +23,7 @@ source: https://github.com/tldr-pages/tldr.git
- Split a file with at most 512 bytes in each split without breaking lines:
`split {{[-C|--line-bytes]}} 512 {{path/to/file}}`
- Split into multiple files from `stdin`:
`gzip {{[-cd|--stdout --decompress]}} {{path/to/compressed_file.gz}} | split {{[-l|--lines]}} 1000 - {{path/to/output}}`