base64: add Dutch translation (#4610)

beep
Jennifer 2020-10-13 00:09:40 +02:00 committed by GitHub
parent 00ddf1c66d
commit 0a679a6b15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
pages.nl/common/base64.md Normal file
View File

@ -0,0 +1,19 @@
# base64
> Codeer of decodeer bestand of standaardinvoer van/naar Base64 naar standaarduitvoer.
- Codeer een bestand:
`base64 {{bestandsnaam}}`
- Decodeer een bestand:
`base64 -d {{bestandsnaam}}`
- Codeer `stdin`:
`{{eencommando}} | base64`
- Decodeer `stdin`:
`{{eencommando}} | base64 -d`