Update cheatsheets

This commit is contained in:
ivuorinen
2025-07-17 00:22:18 +00:00
parent dbdba24741
commit 133bbf5e2b
5 changed files with 121 additions and 0 deletions

41
tldr/chainctl Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# chainctl
> The official CLI for Chainguard.
> More information: <https://edu.chainguard.dev/chainguard/chainctl>.
- Authenticate to the Chainguard Platform:
`chainctl auth login`
- Logout from the Chainguard Platform:
`chainctl auth logout`
- Check which version you have installed:
`chainctl version`
- Update to the latest version:
`chainctl update`
- List images available to your account:
`chainctl images list`
- List image repositories available to your account:
`chainctl images repos list`
- Examine the history of an image tag in chainctl (e.g., image=python tag=3):
`chainctl images history {{image}}:{{tag}}`
- List package version data from repositories available to your account (e.g.,package_name=go):
`chainctl packages versions list {{package_name}}`

17
tldr/linux/acpi_listen Normal file
View File

@@ -0,0 +1,17 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# acpi_listen
> Listen to ACPI events.
> More information: <https://manned.org/acpi_listen>.
- Listen to any ACPI event while the daemon is running:
`acpi_listen`
- Display help:
`acpi_listen {{[-h|--help]}}`

12
tldr/mpicxx Normal file
View File

@@ -0,0 +1,12 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# mpicxx
> This command is an alias of `mpic++`.
- View documentation for the original command:
`tldr mpic++`

22
tldr/pulumi-schema Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# pulumi schema
> Check a Pulumi package schema for errors.
> Schema reference: <https://www.pulumi.com/docs/iac/extending-pulumi/schema/>.
> More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_schema/>.
- Check a package schema:
`pulumi schema check {{path/to/file}}`
- Check a package schema without failing if the reference to a type is missing:
`pulumi schema check --allow-dangling-references {{path/to/file}}`
- Display help:
`pulumi schema check {{[-h|--help]}}`

29
tldr/wlc Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# wlc
> Manage localization projects on a Weblate instance.
> More information: <https://docs.weblate.org/en/latest/wlc.html#commands>.
- List projects using a configuration file:
`wlc {{[-c|--config]}} {{path/to/file}} list-projects`
- List components in a project, and override API URL and API key:
`wlc {{[-u|--url]}} {{URL}} {{[-k|--key]}} {{key}} ls {{project}}`
- List translations from a component in a specific format:
`wlc {{[-f|--format]}} {{text|csv|json|html}} ls {{project}}/{{component}}`
- Print statistics for a project:
`wlc stats {{project}}`
- Display help:
`wlc {{[-h|--help]}}`