tldr/pages.ko/common/base64.md

21 lines
423 B
Markdown
Raw Normal View History

# base64
> 파일 또는 표준 입력을 Base64와 표준 출력으로 인코딩하거나 디코딩함.
2021-03-30 08:06:32 +01:00
> 더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/base64-invocation.html>.
- 파일 인코딩:
`base64 {{filename}}`
- 파일 디코딩:
2021-03-07 22:58:11 +00:00
`base64 --decode {{filename}}`
- stdin에서 인코딩:
`{{somecommand}} | base64`
- stdin에서 디코딩:
2021-03-07 22:58:11 +00:00
`{{somecommand}} | base64 --decode`