conf2/zsh/.oh-my-zsh/plugins/encode64/README.md
vincent 341b34f8fa Revert "add powerlevel10k"
This reverts commit 537a63d601.
2020-06-11 16:59:30 +02:00

1.1 KiB

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:

    plugins=(
      # ...other enabled plugins
      encode64
    )
    
  2. Restart your terminal session or restart the shell:

    exec zsh
    

Usage and examples

Encoding

  • From parameter

    $ encode64 "oh-my-zsh"
    b2gtbXktenNo
    $ e64 "oh-my-zsh"
    b2gtbXktenNo
    
  • From piping

    $ echo "oh-my-zsh" | encode64
    b2gtbXktenNo==
    $ echo "oh-my-zsh" | e64
    b2gtbXktenNo==
    

Decoding

  • From parameter

    $ decode64 b2gtbXktenNo
    oh-my-zsh%
    $ d64 b2gtbXktenNo
    oh-my-zsh%
    
  • From piping

    $ echo "b2gtbXktenNoCg==" | decode64
    oh-my-zsh
    $ echo "b2gtbXktenNoCg==" | decode64
    oh-my-zsh