Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
7bb27448735e2a8d710eca9f0dc0ecf37185f403
7bb27448735e2a8d710eca9f0dc0ecf37185f403
Switch branch/tag
oh-my-zsh
plugins
encode64
encode64.plugin.zsh
Find file
Normal view
History
Permalink
encode64.plugin.zsh
70 Bytes
Edit
Web IDE
Newer
Older
Plugin for encoding strings into base64 and decoding them
Vitaliy Yanchuk
committed
Mar 16, 2012
1
2
encode64
(){
echo
-n
$1
|
base64
}
decode64
(){
echo
-n
$1
|
base64
-D
}