b2-tools, b3sum, babeld, bandwhich, basenc, bash-it, bastet, bats, bazel, bcomps: add Korean translation (#13727)

This commit is contained in:
HoJeong Im
2024-09-22 01:43:31 +09:00
committed by GitHub
parent ffba07f9e8
commit 7f1ecba98c
10 changed files with 265 additions and 0 deletions

20
pages.ko/common/basenc.md Normal file
View File

@@ -0,0 +1,20 @@
# basenc
> 지정된 인코딩을 사용하여 파일 또는 `stdin`을 `stdout`으로 인코딩하거나 디코딩함.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/basenc>.
- base64 인코딩으로 파일을 인코딩:
`basenc --base64 {{경로/대상/파일}}`
- base64 인코딩으로 파일을 디코딩:
`basenc --decode --base64 {{경로/대상/파일}}`
- 42개의 열이 있는 base32 인코딩을 사용하여 `stdin`에서 인코딩:
`{{명령어}} | basenc --base32 -w42`
- base32 인코딩을 사용하여 `stdin`에서 인코딩:
`{{명령어}} | basenc --base32`