tldr/pages.nl/common/base64.md

21 lines
410 B
Markdown
Raw Normal View History

2020-10-12 23:09:40 +01:00
# base64
> Codeer of decodeer bestand of standaardinvoer van/naar Base64 naar standaarduitvoer.
2021-03-30 08:06:32 +01:00
> Meer informatie: <https://www.gnu.org/software/coreutils/manual/html_node/base64-invocation.html>.
2020-10-12 23:09:40 +01:00
- Codeer een bestand:
`base64 {{bestandsnaam}}`
- Decodeer een bestand:
2021-03-07 22:58:11 +00:00
`base64 --decode {{bestandsnaam}}`
2020-10-12 23:09:40 +01:00
- Codeer stdin:
2020-10-12 23:09:40 +01:00
`{{eencommando}} | base64`
- Decodeer stdin:
2020-10-12 23:09:40 +01:00
2021-03-07 22:58:11 +00:00
`{{eencommando}} | base64 --decode`