1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/base32.md
4G3NT 87ec0727fc
pages*: add backticks to every io stream (#10442)
* pages*: add backticks to every io stream
2023-07-02 18:42:01 +05:30

20 lines
394 B
Markdown

# base32
> 파일 또는 표준 입력을 Base32와 표준 출력으로 인코딩하거나 디코딩함.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/base32>.
- 파일 인코딩:
`base32 {{filename}}`
- 파일 디코딩:
`base32 --decode {{filename}}`
- `stdin`에서 인코딩:
`{{somecommand}} | base32`
- `stdin`에서 디코딩:
`{{somecommand}} | base32 --decode`