summaryrefslogtreecommitdiffstats
path: root/.config/zsh/oh-my-zsh/plugins/encode64/README.md
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/oh-my-zsh/plugins/encode64/README.md')
-rw-r--r--.config/zsh/oh-my-zsh/plugins/encode64/README.md58
1 files changed, 58 insertions, 0 deletions
diff --git a/.config/zsh/oh-my-zsh/plugins/encode64/README.md b/.config/zsh/oh-my-zsh/plugins/encode64/README.md
new file mode 100644
index 0000000..86320cf
--- /dev/null
+++ b/.config/zsh/oh-my-zsh/plugins/encode64/README.md
@@ -0,0 +1,58 @@
+# encode64
+
+Alias plugin for encoding or decoding using `base64` command.
+
+To use it, add `encode64` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... encode64)
+```
+
+## Functions and Aliases
+
+| Function | Alias | Description |
+| ---------- | ----- | ------------------------------ |
+| `encode64` | `e64` | Encodes given data to base64 |
+| `decode64` | `d64` | Decodes given data from base64 |
+
+## Usage and examples
+
+### Encoding
+
+- From parameter
+
+ ```console
+ $ encode64 "oh-my-zsh"
+ b2gtbXktenNo
+ $ e64 "oh-my-zsh"
+ b2gtbXktenNo
+ ```
+
+- From piping
+
+ ```console
+ $ echo "oh-my-zsh" | encode64
+ b2gtbXktenNo==
+ $ echo "oh-my-zsh" | e64
+ b2gtbXktenNo==
+ ```
+
+### Decoding
+
+- From parameter
+
+ ```console
+ $ decode64 b2gtbXktenNo
+ oh-my-zsh%
+ $ d64 b2gtbXktenNo
+ oh-my-zsh%
+ ```
+
+- From piping
+
+ ```console
+ $ echo "b2gtbXktenNoCg==" | decode64
+ oh-my-zsh
+ $ echo "b2gtbXktenNoCg==" | d64
+ oh-my-zsh
+ ```