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
29fb24487cce4e61bdc24a9a0308f04a739a3d1f
29fb24487cce4e61bdc24a9a0308f04a739a3d1f
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
}