|
|
|
|
@ -10,10 +10,11 @@ plugins=(... encode64) |
|
|
|
|
|
|
|
|
|
## Functions and Aliases |
|
|
|
|
|
|
|
|
|
| Function | Alias | Description | |
|
|
|
|
| ---------- | ----- | ------------------------------ | |
|
|
|
|
| `encode64` | `e64` | Encodes given data to base64 | |
|
|
|
|
| `decode64` | `d64` | Decodes given data from base64 | |
|
|
|
|
| Function | Alias | Description | |
|
|
|
|
| -------------- | ------ | -------------------------------------- | |
|
|
|
|
| `encode64` | `e64` | Encodes given data to base64 | |
|
|
|
|
| `encodefile64` | `ef64` | Encodes given file's content to base64 | |
|
|
|
|
| `decode64` | `d64` | Decodes given data from base64 | |
|
|
|
|
|
|
|
|
|
## Usage and examples |
|
|
|
|
|
|
|
|
|
@ -37,6 +38,20 @@ plugins=(... encode64) |
|
|
|
|
b2gtbXktenNo== |
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
### Encoding a file |
|
|
|
|
|
|
|
|
|
Encode a file's contents to base64 and save output to text file. |
|
|
|
|
**NOTE:** Takes provided file and saves encoded content as new file with `.txt` extension |
|
|
|
|
|
|
|
|
|
- From parameter |
|
|
|
|
|
|
|
|
|
```console |
|
|
|
|
$ encodefile64 ohmyzsh.icn |
|
|
|
|
ohmyzsh.icn's content encoded in base64 and saved as ohmyzsh.icn.txt |
|
|
|
|
$ ef64 "oh-my-zsh" |
|
|
|
|
ohmyzsh.icn's content encoded in base64 and saved as ohmyzsh.icn.txt |
|
|
|
|
``` |
|
|
|
|
|
|
|
|
|
### Decoding |
|
|
|
|
|
|
|
|
|
- From parameter |
|
|
|
|
|