1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages.ko/common/base64.md
2021-04-01 18:54:26 +03:00

20 lines
390 B
Markdown

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