# diffcp by Till Vollmer this is used by WAVEMASTER
# V1.0
# 
#!/bin/sh
cd .. 
if [ ! -f $1 ]
then 
co $1
fi 
if [ -f $2 ] &&  diff $1 $2 > /dev/null 2>&1
then
echo "Files $1 and $2 do not differ"
else
echo "Copying $1 to $2"
rm -rf $2
cp $1 $2
fi


