This website requires JavaScript.
Explore
Help
Sign In
shell-user
/
oh-my-zsh
Watch
1
Star
0
Fork
0
mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced
2024-05-11 05:55:17 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
Files
7be660bf1d0d8ae054b645278ea4e79e71c8beec
oh-my-zsh
/
plugins
/
encode64
/
encode64.plugin.zsh
T
2 lines
70 B
Bash
Raw
Normal View
History
Unescape
Escape
Plugin for encoding strings into base64 and decoding them
2012-03-16 14:10:37 +02:00
encode64
(){
echo
-n
$1
|
base64
}
decode64
(){
echo
-n
$1
|
base64 -D
}
Reference in New Issue
Copy Permalink