1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-13 02:55:24 +02:00
tldr/pages.nl/common/base64.md
2021-03-30 10:06:32 +03:00

410 B

base64

Codeer of decodeer bestand of standaardinvoer van/naar Base64 naar standaarduitvoer. Meer informatie: https://www.gnu.org/software/coreutils/manual/html_node/base64-invocation.html.

  • Codeer een bestand:

base64 {{bestandsnaam}}

  • Decodeer een bestand:

base64 --decode {{bestandsnaam}}

  • Codeer stdin:

{{eencommando}} | base64

  • Decodeer stdin:

{{eencommando}} | base64 --decode