#!/bin/sh
#
if [ "$1" = "" ] ; then
   echo usage: $0 tarfile
   exit 1
fi
find . -type f -mtime -1 \! -name '*[oa~]' -print | xargs tar cf $1
