https://github.com/rssnyder/base64-to-file
https://github.com/rssnyder/base64-to-file
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rssnyder/base64-to-file
- Owner: rssnyder
- Created: 2022-12-08T19:10:13.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T19:24:24.000Z (over 3 years ago)
- Last Synced: 2025-01-28T12:39:53.874Z (over 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```