#!/bin/sh
#
if [ "$1" = "" ] ; then
   echo usage: $0 tarfile
   exit 1
fi
find . -name objects -prune -o -type f -mtime -3 -print | xargs tar cf $1
