#!/bin/sh
# $Id: rsync-mirror,v 1.1 1998/11/09 03:23:59 friedman Exp $

exec rsync \
      --delete \
      --devices \
      --force \
      --group \
      --hard-links \
      --links \
      --owner \
      --perms \
      --recursive \
      --sparse \
      --times \
      --verbose \
      ${1+"$@"}
