view move-if-change @ 44033:588b5b177b8a

Eliminate compilation warnings due to `rfc822-addresses'. (rmail-dont-reply-to): Eliminate `pos' as a free variable for a warning free compile.
author Paul Reilly <pmr@pajato.com>
date Wed, 20 Mar 2002 08:08:48 +0000
parents 354e0c45cedf
children 14a97ab281d5
line wrap: on
line source

#!/bin/sh
if
test -r $2
then
if
cmp $1 $2 > /dev/null
then
echo $2 is unchanged
rm -f $1
else
mv -f $1 $2
fi
else
mv -f $1 $2
fi