공부
[Shell] `echo 'test' | base64`; `echo 'dGVzdAo=' | base64 --decode`
승가비
2021. 12. 7. 23:32
728x90
seunggabi@seunggabi ~ echo 'test' | base64 -w0
dGVzdAo=
seunggabi@seunggabi ~ echo 'dGVzdAo=' | base64 --decode
test
seunggabi@seunggabi ~
https://linuxhint.com/bash_base64_encode_decode/
Bash base64 encode and decode
I am a trainer of web programming courses. I like to write article or tutorial on various IT topics. I have a YouTube channel where many types of tutorials based on Ubuntu, Windows, Word, Excel, WordPress, Magento, Laravel etc. are published: Tutorials4u H
linuxhint.com
https://stackoverflow.com/questions/65861283/linux-base64-encoded-value-produces-spaces
Linux Base64 encoded value produces spaces
I have the following bash script TOKEN=$(aws ecr get-login-password --region us-east-2) echo $TOKEN USERNAME="AWS" ENCODE_ME="${USERNAME}:${TOKEN}" echo $ENCODE_ME BASE_64_E...
stackoverflow.com
728x90