Watch
1
0
Fork
You've already forked oh-my-zsh
0
oh-my-zsh/plugins/encode64/encode64.plugin.zsh

2 lines
No EOL
70 B
Shell

encode64(){ echo -n $1 | base64 }
decode64(){ echo -n $1 | base64 -D }