base64: add Dutch translation (#13384)

This commit is contained in:
Sebastiaan Speck 2024-08-13 10:18:18 +02:00 committed by GitHub
parent 6ebaecfc07
commit 7d523ce034
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
pages.nl/osx/base64.md Normal file
View File

@ -0,0 +1,20 @@
# base64
> Encodeer en decodeer met behulp van Base64-representatie.
> Meer informatie: <https://keith.github.io/xcode-man-pages/base64.1.html>.
- Encodeer een bestand:
`base64 --input={{gewoon_bestand}}`
- Decodeer een bestand:
`base64 --decode --input={{base64_bestand}}`
- Encodeer vanaf `stdin`:
`echo -n "{{platte_tekst}}" | base64`
- Decodeer vanaf `stdin`:
`echo -n {{base64_tekst}} | base64 --decode`