common/base32, common/base64: standardize all translations (#13807)

This commit is contained in:
Reinhart Previano Koentjoro
2024-09-24 22:10:33 +07:00
committed by GitHub
parent 28cc4231b2
commit a4fdb76fb0
24 changed files with 255 additions and 95 deletions

View File

@@ -1,15 +1,19 @@
# base32
> 파일 또는 표준 입력을 Base32와 표준 출력으로 인코딩하거나 디코딩함.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/base32>.
> 더 많은 정보: <https://manned.org/base32>.
- 파일 인코딩:
`base32 {{filename}}`
`base32 {{경로/대상/파일}}`
- 특정 너비로 ​​인코딩된 출력을 래핑합니다 (`0`은 래핑을 비활성화합니다):
`base32 {{-w|--wrap}} {{0|76|...}} {{경로/대상/파일}}`
- 파일 디코딩:
`base32 --decode {{filename}}`
`base32 {{-d|--decode}} {{경로/대상/파일}}`
- `stdin`에서 인코딩:
@@ -17,4 +21,4 @@
- `stdin`에서 디코딩:
`{{somecommand}} | base32 --decode`
`{{somecommand}} | base32 {{-d|--decode}}`