Skip to content

Commit

Permalink
Data update 2024-11-13 01-03-02
Browse files Browse the repository at this point in the history
  • Loading branch information
1010bots committed Nov 13, 2024
1 parent 33362a9 commit 86edd96
Show file tree
Hide file tree
Showing 29 changed files with 118 additions and 248 deletions.
25 changes: 16 additions & 9 deletions docs/en/common/aws-secretsmanager.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
layout: page
title: common/aws-secretsmanager (English)
description: "Store, manage, and retrieve secrets."
content_hash: 26b08e62e6cd54ab203e3fb840fdd6d4bcc5a3c8
last_modified_at: 2023-11-12
content_hash: a55a95226e4591ee6fe43472b0b44c0064172d66
last_modified_at: 2024-11-13
related_topics:
- title: 한국어 version
url: /ko/common/aws-secretsmanager.html
icon: bi bi-globe
- title: português (Brasil) version
url: /pt_BR/common/aws-secretsmanager.html
icon: bi bi-globe
Expand All @@ -19,26 +22,30 @@ More information: <https://docs.aws.amazon.com/cli/latest/reference/secretsmanag

`aws secretsmanager list-secrets`

- List all secrets but only show the secret names and ARNs (easy to view):

`aws secretsmanager list-secrets --query 'SecretList[*].{Name: Name, ARN: ARN}'`

- Create a secret:

`aws secretsmanager create-secret --name `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name</span>` --description "`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">secret_description</span>`" --secret-string `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">secret</span>
`aws secretsmanager create-secret --name `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name</span>` --description "`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">secret_description</span>`" --secret-string '`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">secret</span>`'`

- Delete a secret:
- Delete a secret (append `--force-delete-without-recovery` to delete immediately without any recovery period):

`aws secretsmanager delete-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name_or_arn</span>
`aws secretsmanager delete-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name|arn</span>

- View details of a secret except for secret text:

`aws secretsmanager describe-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name_or_arn</span>
`aws secretsmanager describe-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name|arn</span>

- Retrieve the value of a secret (to get the latest version of the secret omit `--version-stage`):

`aws secretsmanager get-secret-value --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name_or_arn</span>` --version-stage `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">version_of_secret</span>
`aws secretsmanager get-secret-value --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name|arn</span>` --version-stage `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">version_of_secret</span>

- Rotate the secret immediately using a Lambda function:

`aws secretsmanager rotate-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name_or_arn</span>` --rotation-lambda-arn `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">arn_of_lambda_function</span>
`aws secretsmanager rotate-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name|arn</span>` --rotation-lambda-arn `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">arn_of_lambda_function</span>

- Rotate the secret automatically every 30 days using a Lambda function:

`aws secretsmanager rotate-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name_or_arn</span>` --rotation-lambda-arn `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">arn_of_lambda_function</span>` --rotation-rules AutomaticallyAfterDays=`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">30</span>
`aws secretsmanager rotate-secret --secret-id `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">name|arn</span>` --rotation-lambda-arn `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">arn_of_lambda_function</span>` --rotation-rules AutomaticallyAfterDays=`<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">30</span>
11 changes: 9 additions & 2 deletions docs/en/linux/wl-paste.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
layout: page
title: linux/wl-paste (English)
description: "Paste content in Wayland clipboard."
content_hash: 8e6741d93f6a7b172f35b8bb95e717d240b7741f
last_modified_at: 2024-02-15
content_hash: dfd6f87ee59743ac084b3ecd6a94383d5be24321
last_modified_at: 2024-11-13
related_topics:
- title: 한국어 version
url: /ko/linux/wl-paste.html
icon: bi bi-globe
- title: Türkçe version
url: /tr/linux/wl-paste.html
icon: bi bi-globe
Expand All @@ -20,6 +23,10 @@ More information: <https://github.com/bugaevc/wl-clipboard>.

`wl-paste`

- Paste the contents of the primary clipboard (highlighted text):

`wl-paste --primary`

- Write the contents of the clipboard to a file:

`wl-paste > `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">path/to/file</span>
Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzcmp.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzcmp (español)
description: "Este comando es un alias de `xzcmp`."
content_hash: 391285b3008df889938c8a774481002b43c14182
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzcmp.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzcmp.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzcmp.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzcmp
# lzcmp

Este comando es un alias de `xzcmp`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzegrep.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzegrep (español)
description: "Este comando es un alias de `xzgrep --extended-regexp`."
content_hash: 2bb4e79e4e39774adeff27a520b31e889755f41b
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzegrep.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzegrep.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzegrep.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzegrep
# lzegrep

Este comando es un alias de `xzgrep --extended-regexp`.
Vea también: `egrep`.
Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzfgrep.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzfgrep (español)
description: "Este comando es un alias de `xzgrep --fixed-strings`."
content_hash: 4cce048eb7ff049537bd75ca246322726f1e486e
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzfgrep.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzfgrep.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzfgrep.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzfgrep
# lzfgrep

Este comando es un alias de `xzgrep --fixed-strings`.
Vea también: `fgrep`.
Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzgrep.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzgrep (español)
description: "Este comando es un alias de `xzgrep`."
content_hash: 88add45a6a1922af477ef7bd771674ddda41b607
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzgrep.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzgrep.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzgrep.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzgrep
# lzgrep

Este comando es un alias de `xzgrep`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzless.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzless (español)
description: "Este comando es un alias de `xzless`."
content_hash: ed3cd42f8f4a8e61b675bcffc2f39822c54bc7b2
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzless.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzless.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzless.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzless
# lzless

Este comando es un alias de `xzless`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/lzmore.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/lzmore (español)
description: "Este comando es un alias de `xzmore`."
content_hash: dd6c1322aa44ed3c5df30fbdf0fe73f1ce9c3785
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/lzmore.html
Expand All @@ -17,18 +17,9 @@ related_topics:
- title: polski version
url: /pl/common/lzmore.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/lzmore.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># lzmore
# lzmore

Este comando es un alias de `xzmore`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/mogrify.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/mogrify (español)
description: "Este comando es un alias de `magick mogrify`."
content_hash: 9c750f64a31cde7d731ebdc9f678e39ae98aa754
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/mogrify.html
Expand All @@ -14,18 +14,9 @@ related_topics:
- title: Nederlands version
url: /nl/common/mogrify.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/mogrify.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># mogrify
# mogrify

Este comando es un alias de `magick mogrify`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/montage.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/montage (español)
description: "Este comando es un alias de `magick montage`."
content_hash: 11f3471114381792d6d2477d93bd5b5cd66b4076
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/montage.html
Expand All @@ -14,18 +14,9 @@ related_topics:
- title: Nederlands version
url: /nl/common/montage.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/montage.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># montage
# montage

Este comando es un alias de `magick montage`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/netcat.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: page
title: common/netcat (español)
description: "Este comando es un alias de `nc`."
content_hash: 7d90eec0801772ec40d2a71c7545818c58301f4a
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/netcat.html
Expand All @@ -20,18 +20,9 @@ related_topics:
- title: polski version
url: /pl/common/netcat.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/netcat.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># netcat
# netcat

Este comando es un alias de `nc`.

Expand Down
15 changes: 3 additions & 12 deletions docs/es/common/npm-author.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,17 @@ layout: page
title: common/npm-author (español)
description: "Este comando es un alias de `npm owner`."
content_hash: 0a9fc0eda2e23b77c8fbd6033acbf1564f57a694
last_modified_at: 2024-11-12
last_modified_at: 2024-11-13
related_topics:
- title: English version
url: /en/common/npm-author.html
icon: bi bi-globe
- title: 한국어 version
url: /ko/common/npm-author.html
icon: bi bi-globe
tldri18n_status: 0
tldri18n_status: 2
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/npm-author.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># npm-author
# npm-author

Este comando es un alias de `npm owner`.

Expand Down
Loading

0 comments on commit 86edd96

Please sign in to comment.