+#!/bin/bash
+export XDG_RUNTIME_DIR=/run/user/$(id -u)
+export DISPLAY=":0"
+export XAUTHORITY="$HOME/.Xauthority"
+export BACKUP_VERBOSE=0
+export HOME=/home/will
+export USER=will
+
+# Backups periodicals. Usefull for live web databases and other files not in the main backup path.
+# Periodicals are stored as compressed archives.
+
+echo -e $(date +"%d-%b-%Y %T") $(basename $0) "Started"
+
+rsync -chavzP --stats will@nuc:thttpd_dev/dbLifeLog/ "$HOME/backups/NUC_dbLifeLog"
+rm -f "$HOME/backups/NUC_dbLifeLog/cgisess_*"
+# Let's synch perl and its modules while we at it.
+rsync -Pacz --stats /home/will/localperl will@nuc:backups
+
+echo -e $(date +"%d-%b-%Y %T") $(basename $0) "Ended\n"
+
+exit;