diff options
Diffstat (limited to 'bin/backup-profiles')
-rw-r--r-- | bin/backup-profiles | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/backup-profiles b/bin/backup-profiles new file mode 100644 index 0000000..2f87701 --- /dev/null +++ b/bin/backup-profiles @@ -0,0 +1,10 @@ +#!/bin/bash + +cd /tmp +tar cvfz firefox.tgz $1/.mozilla/firefox/david.runge-backup +gpg -e -r 'David Runge <david.runge@frqrec.com>' firefox.tgz +mv -f firefox.tgz.gpg $1/Dropbox/sync + +tar cvfz thunderbird.tgz $1/.thunderbird/david.runge +gpg -e -r 'David Runge <david.runge@frqrec.com>' thunderbird.tgz +mv -f thunderbird.tgz.gpg $1/Dropbox/sync |