1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-09 06:05:23 +02:00
tldr/pages.nl/common/base64.md
Managor 9a42cc59fb
pages*/common/*: add option placeholders to translations part 1 (#15896)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-14 12:48:08 +05:30

24 lines
513 B
Markdown

# base64
> Encodeer of decodeer een bestand of `stdin` van/naar Base64 naar `stdout`.
> Meer informatie: <https://manned.org/base64>.
- Encodeer een bestand:
`base64 {{pad/naar/bestand}}`
- Zet gecodeerde uitvoer naar een specifieke breedte (`0` schakelt het uit):
`base64 {{[-w|--wrap]}} {{0|76|...}} {{pad/naar/bestand}}`
- Decodeer een bestand:
`base64 {{[-d|--decode]}} {{pad/naar/bestand}}`
- Encodeer `stdin`:
`{{commando}} | base64`
- Decodeer `stdin`:
`{{commando}} | base64 {{[-d|--decode]}}`