#!/bin/csh
if (-e $2 == 0) then
/bin/cp $1 $2
else
if {(diff $1 $2 >&/dev/null)} then
else
/bin/cp $1 $2
endif
endif
