1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01: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 }