1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-19 09:15:24 +02:00
tldr/pages.nl/common/base32.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

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