2024-01-04 14:13:11 +00:00
|
|
|
# base32
|
|
|
|
|
|
|
|
> Codeer of decodeer een bestand of `stdin` van/naar Base32 naar `stdout`.
|
|
|
|
> Meer informatie: <https://www.gnu.org/software/coreutils/base32>.
|
|
|
|
|
|
|
|
- Encodeer een bestand:
|
|
|
|
|
|
|
|
`base32 {{pad/naar/bestand}}`
|
|
|
|
|
2024-03-18 19:06:30 +00:00
|
|
|
- Zet gecodeerde uitvoer naar een specifieke breedte (`0` schakelt het uit):
|
|
|
|
|
jf, pam*,pbmtosunicon, pcdovtoppm, pngtopam, pnm*, ruff-*, sunicontopnm: add Dutch translation, pcdovtoppm: fix typo (#12878)
* jf, pam*,pbmtosunicon, pcdovtoppm, pngtopam, pnm*, ruff-*, sunicontopnm: add Dutch translation
* pamfix, pages.nl/*: fix and translate typo's
* pamfix, pamfile: fix typos
2024-06-03 12:02:46 +01:00
|
|
|
`base32 --wrap {{0|76|...}} {{pad/naar/bestand}}`
|
2024-03-18 19:06:30 +00:00
|
|
|
|
2024-01-04 14:13:11 +00:00
|
|
|
- Decodeer een bestand:
|
|
|
|
|
|
|
|
`base32 --decode {{pad/naar/bestand}}`
|
|
|
|
|
|
|
|
- Encodeer `stdin`:
|
|
|
|
|
|
|
|
`{{somecommand}} | base32`
|
|
|
|
|
|
|
|
- Decodeeer `stdin`:
|
|
|
|
|
|
|
|
`{{somecommand}} | base32 --decode`
|