#!/bin/bash # # Arquivo automatic syncronizer. # # Parameters CWD="`/bin/pwd`" GIT="/usr/bin/git" NICE="/usr/bin/nice -n 19" IONICE="/user/bin/ionice -c 3" ARCHIVE="/var/cache/sites/arquivo" # Run cd $ARCHIVE $IONICE $NICE $GIT annex add . && \ $IONICE $NICE $GIT annex sync && \ $IONICE $NICE $GIT annex get . &> /dev/null cd $CWD