aboutsummaryrefslogtreecommitdiff
path: root/misc/firefox-rotate
diff options
context:
space:
mode:
Diffstat (limited to 'misc/firefox-rotate')
-rwxr-xr-xmisc/firefox-rotate21
1 files changed, 0 insertions, 21 deletions
diff --git a/misc/firefox-rotate b/misc/firefox-rotate
deleted file mode 100755
index e116e0a..0000000
--- a/misc/firefox-rotate
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-#
-# firefox profile local backup
-#
-
-BACKUPDIR="$HOME/backups/mozilla"
-
-if [ ! -d "/$BACKUPDIR" ]; then
- mkdir -p $BACKUPDIR
-fi
-
-if [ -d "/$BACKUPDIR/mozilla.2" ]; then
- rm -rf /$BACKUPDIR/mozilla.2
-fi
-
-if [ -d "/$BACKUPDIR/mozilla.1" ]; then
- mv /$BACKUPDIR/mozilla.1 /$BACKUPDIR/mozilla.2
-fi
-
-cp -Rp $HOME/.mozilla /$BACKUPDIR/mozilla.1
-