1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 22:02:09 +02:00
tldr/pages.nl/common/base64.md
4G3NT 87ec0727fc
pages*: add backticks to every io stream (#10442)
* pages*: add backticks to every io stream
2023-07-02 18:42:01 +05:30

381 B

base64

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

  • Codeer een bestand:

base64 {{bestandsnaam}}

  • Decodeer een bestand:

base64 --decode {{bestandsnaam}}

  • Codeer stdin:

{{eencommando}} | base64

  • Decodeer stdin:

{{eencommando}} | base64 --decode