1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-12 12:35:41 +02:00
tldr/pages.nl/common/base64.md
Sebastiaan Speck a2fb16cabe
awk, b2sum, base{32, name, nc}: add Dutch translation; base64: update Dutch translation (#11979)
Co-authored-by: Leon <leonvsc@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-04 15:13:11 +01:00

20 lines
375 B
Markdown

# base64
> Encodeer of decodeer een bestand of `stdin` van/naar Base64 naar `stdout`.
> Meer informatie: <https://www.gnu.org/software/coreutils/base64>.
- Encodeer een bestand:
`base64 {{bestandsnaam}}`
- Decodeer een bestand:
`base64 --decode {{bestandsnaam}}`
- Encodeer `stdin`:
`{{eencommando}} | base64`
- Decodeer `stdin`:
`{{eencommando}} | base64 --decode`