0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Merge pull request #1016 from fuksito/master

Helpers for encoding/decoding base64
This commit is contained in:
Robby Russell 2012-06-13 13:19:07 -07:00
commit 7bb2744873

View file

@ -0,0 +1,2 @@
encode64(){ echo -n $1 | base64 }
decode64(){ echo -n $1 | base64 -D }