#!/bin/sh
if
test -r $2
then
if
cmp $1 $2 > /dev/null
then
echo $2 is unchanged
else
echo Updating $2
cp $1 $2
fi
else
echo Creating $2
cp $1 $2
fi
