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

2 lines
70 B
Shell
Raw Normal View History

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