diff --git a/docs/en/common/less-than.md b/docs/en/common/less-than.md index fc78cdee4d..9641bf7a2f 100644 --- a/docs/en/common/less-than.md +++ b/docs/en/common/less-than.md @@ -1,17 +1,24 @@ --- layout: page title: common/less-than (English) -description: "Redirect a file to `stdin`." -content_hash: e986d64436b086b035b97ea8c64b6684c4b34d04 -last_modified_at: 2024-10-02 +description: "Redirect data to `stdin`." +content_hash: 48c706545ccd584cfb5340b9258f4b7878301090 +last_modified_at: 2024-10-12 tldri18n_status: 2 --- # Less than -Redirect a file to `stdin`. -Achieves the same effect as `cat file.txt |`. +Redirect data to `stdin`. More information: . -- Redirect a file to `stdin`: +- Redirect a file to `stdin` (achieves the same effect as `cat file.txt |`): command` < `path/to/file.txt + +- Create a here document and pass that into `stdin` (requires a multiline command): + +command` << `EOF` `multiline_data` `EOF + +- Create a here string and pass that into `stdin`: + +command` <<< `string diff --git a/docs/en/common/wait.md b/docs/en/common/wait.md index 957466bf6b..cb93a5f529 100644 --- a/docs/en/common/wait.md +++ b/docs/en/common/wait.md @@ -2,8 +2,8 @@ layout: page title: common/wait (English) description: "Wait for a process to complete before proceeding." -content_hash: 2740d3783e354cfe32a46c10ae35f849e97fdc30 -last_modified_at: 2023-11-12 +content_hash: f57c8b21cc9baa4c0ea495b35bf2906f2d6db0f9 +last_modified_at: 2024-10-12 tldri18n_status: 2 --- # wait @@ -18,3 +18,7 @@ More information: . - Wait for all processes known to the invoking shell to finish: `wait` + +- Wait for a job to finish: + +`wait %`N diff --git a/docs/en/freebsd/base64.md b/docs/en/freebsd/base64.md new file mode 100644 index 0000000000..9160d278d4 --- /dev/null +++ b/docs/en/freebsd/base64.md @@ -0,0 +1,45 @@ +--- +layout: page +title: freebsd/base64 (English) +description: "Encode or decode file or `stdin` to/from base64, to `stdout` or another file." +content_hash: 995522066144ac87e3a61b7258c0f0de7f69ddbb +last_modified_at: 2024-10-12 +tldri18n_status: 0 +--- + +### 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. + +View original (English) version +Contributing Guidelines + +
# base64 + +Encode or decode file or `stdin` to/from base64, to `stdout` or another file. +More information: . + +- Encode a file to `stdout`: + +`base64 `-i|--input` `path/to/file + +- Encode a file to the specified output file: + +`base64 `-i|--input` `path/to/input_file` `-o|--output` `path/to/output_file + +- Wrap encoded output at a specific width (`0` disables wrapping): + +`base64 `-b|--break` `0|76|...` `path/to/file + +- Decode a file to `stdout`: + +`base64 `-d|--decode` `-i|--input` `path/to/file + +- Encode from `stdin` to `stdout`: + +command` | base64` + +- Decode from `stdin` to `stdout`: + +command` | base64 `-d|--decode diff --git a/docs/en/linux/script.md b/docs/en/linux/script.md index f48747fdf4..e4b9d609b7 100644 --- a/docs/en/linux/script.md +++ b/docs/en/linux/script.md @@ -2,8 +2,8 @@ layout: page title: linux/script (English) description: "Record all terminal output to file." -content_hash: c1b492840fbd1578992e53560f72aef7fe895caf -last_modified_at: 2023-11-12 +content_hash: cf2f4ccc188cf41af7da3d1c32dfebbceca4eec5 +last_modified_at: 2024-10-12 tldri18n_status: 2 --- # script @@ -25,4 +25,8 @@ More information: . - Record timing information (data is outputted to `stderr`): -`script -t 2> `path/to/timingfile +`script -t 2> `path/to/timing_file + +- Write out data as soon as it happens: + +`script -f `path/to/file diff --git a/docs/en/osx/base64.md b/docs/en/osx/base64.md index 60399805c4..1d8cf2ad95 100644 --- a/docs/en/osx/base64.md +++ b/docs/en/osx/base64.md @@ -1,9 +1,9 @@ --- layout: page title: osx/base64 (English) -description: "Encode and decode using Base64 representation." -content_hash: 1e37b4b19d09b2e4bcdabb1393db627674780930 -last_modified_at: 2024-01-31 +description: "Encode or decode file or `stdin` to/from base64, to `stdout` or another file." +content_hash: b1162b7a5ab0bad7390b2e0b113aec630e38da8d +last_modified_at: 2024-10-12 related_topics: - title: español version url: /es/osx/base64.html @@ -14,6 +14,9 @@ related_topics: - title: italiano version url: /it/osx/base64.html icon: bi bi-globe + - title: Nederlands version + url: /nl/osx/base64.html + icon: bi bi-globe - title: português (Brasil) version url: /pt_BR/osx/base64.html icon: bi bi-globe @@ -24,21 +27,29 @@ tldri18n_status: 2 --- # base64 -Encode and decode using Base64 representation. +Encode or decode file or `stdin` to/from base64, to `stdout` or another file. More information: . -- Encode a file: +- Encode a file to `stdout`: + +`base64 `-i|--input` `path/to/file + +- Encode a file to the specified output file: + +`base64 `-i|--input` `path/to/input_file` `-o|--output` `path/to/output_file + +- Wrap encoded output at a specific width (`0` disables wrapping): -`base64 --input=`plain_file +`base64 `-b|--break` `0|76|...` `path/to/file -- Decode a file: +- Decode a file to `stdout`: -`base64 --decode --input=`base64_file +`base64 `-d|--decode` `-i|--input` `path/to/file -- Encode from `stdin`: +- Encode from `stdin` to `stdout`: -`echo -n "`plain_text`" | base64` +command` | base64` -- Decode from `stdin`: +- Decode from `stdin` to `stdout`: -`echo -n `base64_text` | base64 --decode` +command` | base64 `-d|--decode diff --git a/docs/id/freebsd/base64.md b/docs/id/freebsd/base64.md new file mode 100644 index 0000000000..c13b9aa07a --- /dev/null +++ b/docs/id/freebsd/base64.md @@ -0,0 +1,45 @@ +--- +layout: page +title: freebsd/base64 (Indonesia) +description: "Lakukan pengodean dan pendekodean terhadap suatu berkas atau `stdin` dari/menuju format Base64, menuju `stdout` atau berkas lainnya." +content_hash: 77d163d3b9005a4b4c99c169f2e643168525f2bb +last_modified_at: 2024-10-12 +tldri18n_status: 0 +--- + +### 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. + +View original (English) version +Contributing Guidelines + +
# base64 + +Lakukan pengodean dan pendekodean terhadap suatu berkas atau `stdin` dari/menuju format Base64, menuju `stdout` atau berkas lainnya. +Informasi lebih lanjut: . + +- Kodekan isi suatu berkas menuju format Base64, dan keluarkan hasil menuju `stdout`: + +`base64 `-i|--input` `jalan/menuju/berkas + +- Kodekan isi suatu berkas menuju format Base64, dan keluarkan hasil menuju suatu berkas luaran/output: + +`base64 `-i|--input` `jalan/menuju/berkas_input` `-o|--output` `jalan/menuju/berkas_output + +- Bungkus luaran Base64 dalam panjang karakter yang tetap (nilai `0` akan menonaktifkan pembungkusan): + +`base64 `-b|--break` `0|76|...` `jalan/menuju/berkas + +- Dekodekan kode Base64 yang tersimpan dalam suatu berkas, dan keluarkan hasil menuju `stdout`: + +`base64 `-d|--decode` `-i|--input` `jalan/menuju/berkas + +- Kodekan isi dari `stdin` menuju `stdout`: + +perintah` | base64` + +- Dekodekan kode Base64 yang berasal dari `stdin` menuju `stdout`: + +perintah` | base64 `-d|--decode diff --git a/docs/id/osx/base64.md b/docs/id/osx/base64.md new file mode 100644 index 0000000000..881408e0c1 --- /dev/null +++ b/docs/id/osx/base64.md @@ -0,0 +1,67 @@ +--- +layout: page +title: osx/base64 (Indonesia) +description: "Lakukan pengodean dan pendekodean terhadap suatu berkas atau `stdin` dari/menuju format Base64, menuju `stdout` atau berkas lainnya." +content_hash: 0ec0e5f9d3998162b5cc387af6549d849aab2862 +last_modified_at: 2024-10-12 +related_topics: + - title: English version + url: /en/osx/base64.html + icon: bi bi-globe + - title: español version + url: /es/osx/base64.html + icon: bi bi-globe + - title: हिन्दी version + url: /hi/osx/base64.html + icon: bi bi-globe + - title: italiano version + url: /it/osx/base64.html + icon: bi bi-globe + - title: Nederlands version + url: /nl/osx/base64.html + icon: bi bi-globe + - title: português (Brasil) version + url: /pt_BR/osx/base64.html + icon: bi bi-globe + - title: 中文 version + url: /zh/osx/base64.html + icon: bi bi-globe +tldri18n_status: 0 +--- + +### 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. + +View original (English) version +Contributing Guidelines + +
# base64 + +Lakukan pengodean dan pendekodean terhadap suatu berkas atau `stdin` dari/menuju format Base64, menuju `stdout` atau berkas lainnya. +Informasi lebih lanjut: . + +- Kodekan isi suatu berkas menuju format Base64, dan keluarkan hasil menuju `stdout`: + +`base64 `-i|--input` `jalan/menuju/berkas + +- Kodekan isi suatu berkas menuju format Base64, dan keluarkan hasil menuju suatu berkas luaran/output: + +`base64 `-i|--input` `jalan/menuju/berkas_input` `-o|--output` `jalan/menuju/berkas_output + +- Bungkus luaran Base64 dalam panjang karakter yang tetap (nilai `0` akan menonaktifkan pembungkusan): + +`base64 `-b|--break` `0|76|...` `jalan/menuju/berkas + +- Dekodekan kode Base64 yang tersimpan dalam suatu berkas, dan keluarkan hasil menuju `stdout`: + +`base64 `-d|--decode` `-i|--input` `jalan/menuju/berkas + +- Kodekan isi dari `stdin` menuju `stdout`: + +perintah` | base64` + +- Dekodekan kode Base64 yang berasal dari `stdin` menuju `stdout`: + +perintah` | base64 `-d|--decode diff --git a/docs/ko/common/aws-sso.md b/docs/ko/common/aws-sso.md new file mode 100644 index 0000000000..010661fa8f --- /dev/null +++ b/docs/ko/common/aws-sso.md @@ -0,0 +1,45 @@ +--- +layout: page +title: common/aws-sso (한국어) +description: "SSO(Single Sign-On) 자격 증명을 사용하여 AWS 리소스에 대한 액세스를 관리." +content_hash: 5044bb9fe8081f677b8a786e5d3f53c846f7f117 +last_modified_at: 2024-10-12 +related_topics: + - title: English version + url: /en/common/aws-sso.html + icon: bi bi-globe +tldri18n_status: 0 +--- + +### 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. + +View original (English) version +Contributing Guidelines + +
# aws sso + +SSO(Single Sign-On) 자격 증명을 사용하여 AWS 리소스에 대한 액세스를 관리. +더 많은 정보: . + +- SSO 세션을 시작하고 액세스 토큰을 새로 고침. `aws configure sso`를 사용한 설정이 필요: + +`aws sso login` + +- SSO 세션을 종료하고 캐시된 액세스 토큰을 지움: + +`aws sso logout` + +- 사용자가 액세스할 수 있는 모든 AWS 계정을 나열: + +`aws sso list-accounts` + +- 특정 AWS 계정에 대해 사용자가 액세스할 수 있는 모든 역할을 나열: + +`aws sso list-account-roles --account-id `계정` --access-token `토큰 + +- 특정 계정에 대한 단기 자격 증명 검색: + +`aws get-role-credentials --account-id `계정` --role-name `역할` --access-token `토큰 diff --git a/docs/ko/common/bind.md b/docs/ko/common/bind.md new file mode 100644 index 0000000000..2704ac6194 --- /dev/null +++ b/docs/ko/common/bind.md @@ -0,0 +1,45 @@ +--- +layout: page +title: common/bind (한국어) +description: "bash 단축키 및 변수를 관리하기 위한 bash 내장." +content_hash: f097b2cf6d62bbba216efeea8e2463b0a5f835a7 +last_modified_at: 2024-10-12 +related_topics: + - title: English version + url: /en/common/bind.html + icon: bi bi-globe +tldri18n_status: 0 +--- + +### 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. + +View original (English) version +Contributing Guidelines + +
# bind + +bash 단축키 및 변수를 관리하기 위한 bash 내장. +더 많은 정보: . + +- 모든 바인딩된 명령어와 해당 단축키를 나열: + +`bind `-p|-P + +- 단축키에 대한 명령어를 쿼리: + +`bind -q `명령어 + +- 키 바인딩: + +`bind -x '"`키_시퀸스`":`명령어`'` + +- 사용자 정의 바인딩 나열: + +`bind -X` + +- 도움말 표시: + +`help bind` diff --git a/source b/source index 22a8569f5b..7386dd1d42 160000 --- a/source +++ b/source @@ -1 +1 @@ -Subproject commit 22a8569f5be6c5283a1a28d80fbbe59cd44d6f89 +Subproject commit 7386dd1d42661eebed7f98997e22f79a3ee7dc4d