2 # A trivial script to back up contestants' home directories.
5 D=/aux/back/`date '+%H%M'`
9 echo "Backing up to $D"
12 MLIST=$(bex mach | grep '^contest =' | sed 's/.* = //')
17 rsync -a --max-size=64M root@$m:/mo/users/ $D/$m/ --exclude .kde --exclude .mozilla
18 du -s $D/$m | cut -f 1