document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/bin/sh -c
  2. # takes the string from the clipboard...
  3. export CLIPBOARD_CONTENTS=`pbpaste`
  4. # signs it using your GPG key
  5. export GPG_SIGNED=`echo $CLIPBOARD_CONTENTS | gpg -as -`
  6. # and writes it back to the clipboard for pasting
  7. echo $GPG_SIGNED | pbcopy
');