X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=update.sh;h=c47cb2d98860314a174b26f7e19150816219ca84;hb=25ef37cb714a4e8671f75fb2eafa42c4dcc204ab;hp=9992d6965f13e4a98e90d7ff6e2cdd87e7f714e3;hpb=d098d55927772cc45431fc01cc05f1c3d05b5ae0;p=matches%2Fhonours.git diff --git a/update.sh b/update.sh index 9992d696..c47cb2d9 100755 --- a/update.sh +++ b/update.sh @@ -11,6 +11,14 @@ git="/usr/bin/git" eval $(ssh-agent) 2>/dev/null ssh-add /home/sam/.ssh/honours 2>/dev/null +# 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 @@ -22,8 +30,9 @@ $git add thesis/*.pdf $git add thesis/*.bib $git add course/semester2 -#Dammit why fortune not work! -$git commit -m "Automatic commit. $(fortune -s)" +fortune="/usr/games/fortune" +message=$(echo "Automatic commit. $(date)"; echo ""; $fortune; echo "") +$git commit -m "$message" if [ "$?" == 0 ]; then echo "Commit at $(date)" >> commits.log $git push git.ucc 2>&1 >> commits.log