ohmyzsh/plugins/encode64/encode64.plugin.zsh
Handsome Cheung a8150660e0 compaudit fo zsh
2013-09-07 08:34:47 +08:00

4 lines
109 B
Bash
Executable file

encode64(){ echo -n $1 | base64 }
decode64(){ echo -n $1 | base64 -D }
alias e64=encode64
alias d64=decode64