diff -r 3a324f3b34f6 -r f13472d00645 Admin/rsync-isabelle --- a/Admin/rsync-isabelle Thu Oct 06 08:56:15 2005 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,124 +0,0 @@ -#!/bin/sh -# -# mirror script for Isabelle distribution -# -# $Id$ -# - -## diagnostics - -PRG=`basename "$0"` - -usage() -{ - echo - echo "Usage: $PRG [OPTIONS] DEST" - echo - echo " Options are:" - echo " -h print help message" - echo " -n dry run, don't do anything, just report what would happen" - echo " -d delete files that are not on the server (BEWARE!)" - echo - exit 1 -} - -fail() -{ - echo "$1" >&2 - exit 2 -} - - -## process command line - -# options - -HELP="" -ARGS="" - -while getopts "hnd" OPT -do - case "$OPT" in - h) - HELP=true - ;; - n) - ARGS="$ARGS -n" - ;; - d) - ARGS="$ARGS --delete" - ;; - \?) - usage - ;; - esac -done - -shift `expr $OPTIND - 1` - - -# help - -if [ -n "$HELP" ]; then - cat <