mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-22 13:23:53 +02:00
base64: add Dutch translation (#13384)
This commit is contained in:
parent
6ebaecfc07
commit
7d523ce034
1 changed files with 20 additions and 0 deletions
20
pages.nl/osx/base64.md
Normal file
20
pages.nl/osx/base64.md
Normal 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`
|
Loading…
Add table
Reference in a new issue