mirror of https://github.com/ohmyzsh/ohmyzsh.git
Plugin for encoding strings into base64 and decoding them
This commit is contained in:
parent
1120f97305
commit
db27635d8b
|
@ -0,0 +1,2 @@
|
|||
encode64(){ echo -n $1 | base64 }
|
||||
decode64(){ echo -n $1 | base64 -D }
|
Loading…
Reference in New Issue