diff --git a/tldr/objdump b/tldr/objdump index 794b8e76..d355fd58 100644 --- a/tldr/objdump +++ b/tldr/objdump @@ -10,20 +10,20 @@ source: https://github.com/tldr-pages/tldr.git - Display the file header information: -`objdump -f {{binary}}` +`objdump -f {{path/to/binary}}` - Display all header information: -`objdump -x {{binary}}` +`objdump -x {{path/to/binary}}` - Display the disassembled output of executable sections: -`objdump -d {{binary}}` +`objdump -d {{path/to/binary}}` -- Display the disassembled executable sections in intel syntax: +- Display the disassembled executable sections in Intel syntax: -`objdump -M intel -d {{binary}}` +`objdump -M intel -d {{path/to/binary}}` - Display a complete binary hex dump of all sections: -`objdump -s {{binary}}` +`objdump -s {{path/to/binary}}` diff --git a/tldr/podman-login b/tldr/podman-login index f3e9670a..a97d6103 100644 --- a/tldr/podman-login +++ b/tldr/podman-login @@ -19,4 +19,4 @@ source: https://github.com/tldr-pages/tldr.git - Log in to an insecure (HTTP) registry: -`podman login --tls-verify false {{registry.example.org}}` +`podman login --tls-verify=false {{registry.example.org}}` diff --git a/tldr/pulumi-config b/tldr/pulumi-config new file mode 100644 index 00000000..2d926229 --- /dev/null +++ b/tldr/pulumi-config @@ -0,0 +1,33 @@ +--- +syntax: markdown +tags: [tldr, common] +source: https://github.com/tldr-pages/tldr.git +--- +# pulumi config + +> Manage configuration of a Pulumi stack. +> More information: . + +- View current configuration in JSON format: + +`pulumi config --json` + +- Get the value of a configuration key: + +`pulumi config get {{key}}` + +- Remove a configuration value: + +`pulumi config rm {{key}}` + +- Set a value for a configuration key from a file: + +`cat {{path/to/file}} | pulumi config set {{key}}` + +- Set a secret value (e.g. API key) for a configuration key and store/display as ciphertext: + +`pulumi config set --secret {{key}} {{S3cr37_value}}` + +- Remove multiple configuration values from a specified configuration file: + +`pulumi config --config-file {{path/to/file}} rm-all {{key1 key2 ...}}`