1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Plugin for encoding strings into base64 and decoding them

This commit is contained in:
Vitaliy Yanchuk 2012-03-16 14:10:37 +02:00
parent 1120f97305
commit db27635d8b

View file

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