From 133bbf5e2bb30a03a00b56c6edff320cebd38759 Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Thu, 17 Jul 2025 00:22:18 +0000 Subject: [PATCH] Update cheatsheets --- tldr/chainctl | 41 +++++++++++++++++++++++++++++++++++++++++ tldr/linux/acpi_listen | 17 +++++++++++++++++ tldr/mpicxx | 12 ++++++++++++ tldr/pulumi-schema | 22 ++++++++++++++++++++++ tldr/wlc | 29 +++++++++++++++++++++++++++++ 5 files changed, 121 insertions(+) create mode 100644 tldr/chainctl create mode 100644 tldr/linux/acpi_listen create mode 100644 tldr/mpicxx create mode 100644 tldr/pulumi-schema create mode 100644 tldr/wlc diff --git a/tldr/chainctl b/tldr/chainctl new file mode 100644 index 00000000..38af01f5 --- /dev/null +++ b/tldr/chainctl @@ -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: . + +- 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}}` diff --git a/tldr/linux/acpi_listen b/tldr/linux/acpi_listen new file mode 100644 index 00000000..d01db726 --- /dev/null +++ b/tldr/linux/acpi_listen @@ -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: . + +- Listen to any ACPI event while the daemon is running: + +`acpi_listen` + +- Display help: + +`acpi_listen {{[-h|--help]}}` diff --git a/tldr/mpicxx b/tldr/mpicxx new file mode 100644 index 00000000..b775acde --- /dev/null +++ b/tldr/mpicxx @@ -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++` diff --git a/tldr/pulumi-schema b/tldr/pulumi-schema new file mode 100644 index 00000000..eff46bb0 --- /dev/null +++ b/tldr/pulumi-schema @@ -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: . +> More information: . + +- 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]}}` diff --git a/tldr/wlc b/tldr/wlc new file mode 100644 index 00000000..d22c801c --- /dev/null +++ b/tldr/wlc @@ -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: . + +- 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]}}`