diff options
author | Griko Nibras <grikomsn@gmail.com> | 2018-10-03 22:23:49 +0700 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-10-03 17:23:49 +0200 |
commit | 47004414a0a73ecd33c2a1d4b17dd4f79222ba08 (patch) | |
tree | d4c38e146a664df549f853fbc8693e9b4ed07c30 /plugins | |
parent | ca45d510dd5fdd2cc1e92e969c95dbf7e31efb24 (diff) | |
download | zsh-47004414a0a73ecd33c2a1d4b17dd4f79222ba08.tar.gz zsh-47004414a0a73ecd33c2a1d4b17dd4f79222ba08.tar.bz2 zsh-47004414a0a73ecd33c2a1d4b17dd4f79222ba08.zip |
encode64: add README (#7192)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/encode64/README.md | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/plugins/encode64/README.md b/plugins/encode64/README.md new file mode 100644 index 000000000..9850da85f --- /dev/null +++ b/plugins/encode64/README.md @@ -0,0 +1,69 @@ +# encode64 + +Alias plugin for encoding or decoding using `base64` command + +## Functions and Aliases + +| Function | Alias | Description | +| ---------- | ----- | ------------------------------ | +| `encode64` | `e64` | Encodes given data to base64 | +| `decode64` | `d64` | Decodes given data from base64 | + +## Enabling plugin + +1. Edit your `.zshrc` file and add `encode64` to the list of plugins: + + ```sh + plugins=( + # ...other enabled plugins + encode64 + ) + ``` + +2. Restart your terminal session or reload configuration by running: + + ```sh + source ~/.zshrc + ``` + +## 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==" | decode64 + oh-my-zsh + ``` |