Populate repo
This commit is contained in:
17
zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh
Normal file
17
zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh
Normal file
@ -0,0 +1,17 @@
|
||||
encode64() {
|
||||
if [[ $# -eq 0 ]]; then
|
||||
cat | base64
|
||||
else
|
||||
printf '%s' $1 | base64
|
||||
fi
|
||||
}
|
||||
|
||||
decode64() {
|
||||
if [[ $# -eq 0 ]]; then
|
||||
cat | base64 --decode
|
||||
else
|
||||
printf '%s' $1 | base64 --decode
|
||||
fi
|
||||
}
|
||||
alias e64=encode64
|
||||
alias d64=decode64
|
Reference in New Issue
Block a user