2020-10-12 23:09:40 +01:00
|
|
|
# base64
|
|
|
|
|
2024-01-04 14:13:11 +00:00
|
|
|
> Encodeer of decodeer een bestand of `stdin` van/naar Base64 naar `stdout`.
|
2021-04-01 16:54:26 +01:00
|
|
|
> Meer informatie: <https://www.gnu.org/software/coreutils/base64>.
|
2020-10-12 23:09:40 +01:00
|
|
|
|
2024-01-04 14:13:11 +00:00
|
|
|
- Encodeer een bestand:
|
2020-10-12 23:09:40 +01:00
|
|
|
|
|
|
|
`base64 {{bestandsnaam}}`
|
|
|
|
|
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
|
|
|
`base64 --wrap {{0|76|...}} {{pad/naar/bestand}}`
|
2024-03-18 19:06:30 +00:00
|
|
|
|
2020-10-12 23:09:40 +01:00
|
|
|
- Decodeer een bestand:
|
|
|
|
|
2021-03-07 22:58:11 +00:00
|
|
|
`base64 --decode {{bestandsnaam}}`
|
2020-10-12 23:09:40 +01:00
|
|
|
|
2024-01-04 14:13:11 +00:00
|
|
|
- Encodeer `stdin`:
|
2020-10-12 23:09:40 +01:00
|
|
|
|
|
|
|
`{{eencommando}} | base64`
|
|
|
|
|
2023-07-02 14:12:01 +01:00
|
|
|
- Decodeer `stdin`:
|
2020-10-12 23:09:40 +01:00
|
|
|
|
2021-03-07 22:58:11 +00:00
|
|
|
`{{eencommando}} | base64 --decode`
|