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