From 262de4bc4f5cd077445ed4a73b4778305d3e128c Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Sun, 28 Dec 2025 00:24:54 +0000 Subject: [PATCH] Update cheatsheets --- tldr/aws-cloudwatch | 2 +- tldr/aws-ses | 2 +- tldr/conda-run | 2 +- tldr/crane-export | 2 +- tldr/crane-flatten | 2 +- tldr/linux/systemd-ask-password | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tldr/aws-cloudwatch b/tldr/aws-cloudwatch index e7f94ad6..dead80da 100644 --- a/tldr/aws-cloudwatch +++ b/tldr/aws-cloudwatch @@ -30,7 +30,7 @@ source: https://github.com/tldr-pages/tldr.git - Delete the specified alarms: -`aws cloudwatch delete-alarms --alarm_names {{alarm_names}}` +`aws cloudwatch delete-alarms --alarm-names {{alarm_names}}` - Delete the specified dashboards: diff --git a/tldr/aws-ses b/tldr/aws-ses index d27ee0ae..f4ab5c2e 100644 --- a/tldr/aws-ses +++ b/tldr/aws-ses @@ -15,7 +15,7 @@ source: https://github.com/tldr-pages/tldr.git - Describe the active receipt rule set: -`aws ses describe-active-receipt-rule-set --generate-cli-skeletion` +`aws ses describe-active-receipt-rule-set --generate-cli-skeleton` - Describe a specific receipt rule: diff --git a/tldr/conda-run b/tldr/conda-run index f060fd0c..33747baf 100644 --- a/tldr/conda-run +++ b/tldr/conda-run @@ -18,4 +18,4 @@ source: https://github.com/tldr-pages/tldr.git - Target an environment by its path (i.e. prefix): -`conda run {{[-p|--path]}} {{path/to/env}} {{command}}` +`conda run {{[-p|--prefix]}} {{path/to/env}} {{command}}` diff --git a/tldr/crane-export b/tldr/crane-export index 580b33dd..90d86c8f 100644 --- a/tldr/crane-export +++ b/tldr/crane-export @@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git # crane export > Export filesystem of a container image as a tarball. -> More information: . +> More information: . - Write tarball to `stdout`: diff --git a/tldr/crane-flatten b/tldr/crane-flatten index 4866fe29..f523b239 100644 --- a/tldr/crane-flatten +++ b/tldr/crane-flatten @@ -7,7 +7,7 @@ source: https://github.com/tldr-pages/tldr.git > Flatten an image's layers into a single layer. > Pushes digest to original image repository if no tags are specified. -> More information: . +> More information: . - Flatten an image: diff --git a/tldr/linux/systemd-ask-password b/tldr/linux/systemd-ask-password index afae39c2..71444000 100644 --- a/tldr/linux/systemd-ask-password +++ b/tldr/linux/systemd-ask-password @@ -32,9 +32,9 @@ source: https://github.com/tldr-pages/tldr.git `systemd-ask-password --no-output --keyname {{key_name}} "{{prompt}}"` -- Pass the asked password to another program: +- Pipe a password to a command, stripping the trailing newline: -`systemd-ask-password | {{command}}` +`systemd-ask-password -n | {{command}}` - Display help: