Adding support for stdin input in the encode64 plugin

This commit is contained in:
Sébastien Larivière 2015-04-04 20:24:24 -04:00 committed by Marc Cornellà
parent 40016afdc4
commit 7daa207dbc
1 changed files with 15 additions and 2 deletions

View File

@ -1,4 +1,17 @@
encode64(){ printf '%s' $1 | base64 }
decode64(){ printf '%s' $1 | base64 --decode }
encode64() {
if [[ $# -eq 0 ]]; then
cat | base64
else
printf '%s' $1 | base64
fi
}
decode64() {
if [[ $# -eq 0 ]]; then
cat | base64 --decode
else
printf '%s' $1 | base64 --decode
fi
}
alias e64=encode64
alias d64=decode64