#!/bin/bash RSYNC="/usr/bin/rsync" OPTS="--quiet --recursive --links --perms --times --devices --delete --timeout=600" SRC="rsync://rsync.crux.nu/crux/" DST="/mirror/ftp/pub/crux/" ${RSYNC} ${OPTS} ${SRC} ${DST} echo "End: "`date`