Skip to content

Instantly share code, notes, and snippets.

@alexandreprates
Last active October 8, 2019 12:55
Show Gist options
  • Save alexandreprates/4376d8ae5c6ce4a38b5b85790591e240 to your computer and use it in GitHub Desktop.
Save alexandreprates/4376d8ae5c6ce4a38b5b85790591e240 to your computer and use it in GitHub Desktop.
Base64 Editor Script

Base64 Editor

Dependencies

  • vipe
  • xclip

sudo apt-get -y moreutils xclip

Usage

  1. Copy the base64 encoded font
  2. Run base64edit.sh from the console
  3. Paste the encoded font into the editor, save and exit : wq
  4. Change human readable text, save and exit : wq
  5. Paste the new base64-encoded text wherever you want

Enjoy!

https://git.io/JeWsM

#!/usr/bin/env sh
echo "Paste source here" | vipe | base64 -d | vipe | base64 - | xclip -selection clipboard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment