X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=c47cb2d98860314a174b26f7e19150816219ca84;hb=25ef37cb714a4e8671f75fb2eafa42c4dcc204ab;hp=0eeb1155f7a6b32b447396cdfc370a1f01e48784;hpb=bb0d2b761bd6986a18a6d0aec13eccb8ebbb9dab;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index 0eeb1155..c47cb2d9 100755 --- a/update.sh +++ b/update.sh @@ -7,24 +7,35 @@ directory="/home/sam/Documents/University/honours/" cd "$directory" # Need to do this too. Apparently -##eval `ssh-agent -s` +git="/usr/bin/git" +eval $(ssh-agent) 2>/dev/null +ssh-add /home/sam/.ssh/honours 2>/dev/null -echo "Committing at $(date)" >> commits.log -git add update.sh -git add papers -git add research -git add thesis/proposal/*.tex -git add thesis/proposal/*.pdf -git add thesis/proposal/*.bib -git add thesis/*.tex -git add thesis/*.pdf -git add thesis/*.bib -git add course/semester2 +# This bit plots any open data files, so I can remotely view them +# IT WORKS! +# IT IS GLORIOUS! +gnuplot="/usr/bin/gnuplot" +for data in $(lsof | grep interface | grep $(date +%Y) | awk '{print $NF}'); do + $gnuplot -e "set term png; set output \"$data.png\"; plot \"$data\" u 1:3 w lp title \"ADC4\", \"$data\" u 1:5 w lp title \"ADC5\"" +done +$git add update.sh +$git add papers +$git add research +$git add thesis/proposal/*.tex +$git add thesis/proposal/*.pdf +$git add thesis/proposal/*.bib +$git add thesis/*.tex +$git add thesis/*.pdf +$git add thesis/*.bib +$git add course/semester2 -git commit -m "Automatic commit at $(date)" +fortune="/usr/games/fortune" +message=$(echo "Automatic commit. $(date)"; echo ""; $fortune; echo "") +$git commit -m "$message" if [ "$?" == 0 ]; then - git push git.ucc 2>&1 >> commits.log + echo "Commit at $(date)" >> commits.log + $git push git.ucc 2>&1 >> commits.log fi -#kill $SSH_AGENT_PID +kill -9 $SSH_AGENT_PID