From: hackbard Date: Sat, 23 Feb 2008 19:23:00 +0000 (+0100) Subject: sync script X-Git-Url: https://hackdaworld.org/gitweb/?p=lectures%2Flatex.git;a=commitdiff_plain;h=41afe4ad5745da4e247e67c25ae99f6584cc24c2 sync script --- diff --git a/posic/sync.sh b/posic/sync.sh new file mode 100755 index 0000000..c75a64d --- /dev/null +++ b/posic/sync.sh @@ -0,0 +1,20 @@ +RSYNC="rsync -avz -u" + +if [ "`hostname`" != "sage" ]; then + SRC="sage.physik.uni-augsburg.de:projects/latex/posic" +fi + +$RSYNC -e "ssh -p 3389" $SRC/img/ ./img/ +$RSYNC -e "ssh -p 3389" $SRC/figs/ ./figs/ + +$RSYNC -e "ssh -p 3389" $SRC/talks/*.pdf ./talks/ + +if [ "$2" = "r" ]; then + + $RSYNC -e "ssh -p 3389" ./img/ $SRC/img/ + $RSYNC -e "ssh -p 3389" ./figs/ $SRC/figs/ + +fi + +echo "done" +