index
:
zsh.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
plugins
/
encode64
/
encode64.plugin.zsh
blob: cfb7c6a18305c7b67507743b3b0977f4b4b3a047 (
plain
)
1
2
encode64(){ echo -n $1 | base64 } decode64(){ echo -n $1 | base64 -D }