An open API service indexing awesome lists of open source software.

https://github.com/rssnyder/base64-to-file


https://github.com/rssnyder/base64-to-file

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# base64-to-file

```shell
~ echo '---
thisis:
a: yaml' | base64 -w 0
LS0tCnRoaXNpczoKICBhOiB5YW1sCg==
~ docker run --rm -it -e BASE64_FILE='LS0tCnRoaXNpczoKICBhOiB5YW1sCg==#' -e FILENAME=output -v $(pwd):/data test
~ cat output
---
thisis:
a: yaml
```