1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:02:09 +02:00
tldr/pages.ko/common/base32.md
2021-03-07 19:58:11 -03:00

321 B

base32

파일 또는 표준 입력을 Base32와 표준 출력으로 인코딩하거나 디코딩함.

  • 파일 인코딩:

base32 {{filename}}

  • 파일 디코딩:

base32 --decode {{filename}}

  • stdin에서 인코딩:

{{somecommand}} | base32

  • stdin에서 디코딩:

{{somecommand}} | base32 --decode