parent
40016afdc4
commit
7daa207dbc
1 changed files with 15 additions and 2 deletions
@ -1,4 +1,17 @@ |
||||
encode64(){ printf '%s' $1 | base64 } |
||||
decode64(){ printf '%s' $1 | base64 --decode } |
||||
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 |
||||
|
||||
Loading…
Reference in new issue