]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / encode64 / encode64.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh
deleted file mode 100644 (file)
index 979e067..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-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