Adding support for stdin input in the encode64 plugin

master
Sébastien Larivière 11 years ago committed by Marc Cornellà
parent 40016afdc4
commit 7daa207dbc
  1. 17
      plugins/encode64/encode64.plugin.zsh

@ -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

Loading…
Cancel
Save