mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-28 17:04:53 +02:00

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
308 B
308 B
base64
파일 또는 표준 입력을 Base64와 표준 출력으로 인코딩하거나 디코딩함.
- 파일 인코딩:
base64 {{filename}}
- 파일 디코딩:
base64 -d {{filename}}
- stdin에서 인코딩:
{{somecommand}} | base64
- stdin에서 디코딩:
{{somecommand}} | base64 -d