1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 08:15:28 +02:00
tldr/pages.nl/common/basenc.md
Sebastiaan Speck 3665646b4c
pages.nl/common/b*: update Dutch translation (#16248)
* pages.nl/common/b*: update Dutch translation

* Update pages.nl/common/bc.md

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

---------

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
2025-04-25 06:31:17 +02:00

20 lines
593 B
Markdown

# basenc
> Encodeer of decodeer een bestand of `stdin` door gebruik te maken van een specifieke encoding naar `stdout`.
> Meer informatie: <https://www.gnu.org/software/coreutils/manual/html_node/basenc-invocation.html>.
- Encodeer een bestand met base64 encoding:
`basenc --base64 {{pad/naar/bestand}}`
- Decodeer een bestand met base64 encoding:
`basenc {{[-d|--decode]}} --base64 {{pad/naar/bestand}}`
- Encodeer `stdin` met base32 encoding met 42 kolommen:
`{{command}} | basenc --base32 {{[-w|--wrap]}} 42`
- Encodeer `stdin` met base32 encoding:
`{{command}} | basenc --base32`