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
8b69c7f6a0c80c1c53505e17d356387b83e18efc
8b69c7f6a0c80c1c53505e17d356387b83e18efc
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
}