1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 22:44:54 +02:00
tldr/pages.es/common/base64.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

317 B

base64

Codifica o decodifica un archivo o la entrada estandar hacia/desde Base64, a la salida estandar.

  • Codifica un archivo:

base64 {{nombre_de_archivo}}

  • Decodifica un archivo:

base64 -d {{nombre_de_archivo}}

  • Codifica stdin:

{{comando}} | base64

  • Decodifica stdin:

{{comando}} | base64 -d