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
Ohmyzsh
772bc51c3a2372592c400e0d4e159a0128989ba2
772bc51c3a2372592c400e0d4e159a0128989ba2
Switch branch/tag
ohmyzsh
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
}