Skip to content

Instantly share code, notes, and snippets.

@elmendalerenda
Created April 27, 2014 10:12
Show Gist options
  • Select an option

  • Save elmendalerenda/11342146 to your computer and use it in GitHub Desktop.

Select an option

Save elmendalerenda/11342146 to your computer and use it in GitHub Desktop.
pgp encryption in dropbox
#decrypt
gpg -o ./Desktop/personal.tgz -d ./Dropbox/personal.tgz.gpg && cd ./Desktop/ && tar xvzf personal.tgz && rm personal.tgz && cd ..
#encrypt
cd ./Desktop/ && tar cvzf - personal/ | gpg -esr $PGP_RECIPIENT > ../Dropbox/personal.tgz.gpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment