view move-if-change @ 102368:968d71b7a967

(rmail-highlighted-headers, rmail-highlight, rmail-header-name): Doc fixes. (rmail-show-message-verbose-min): Add :version. (rmail-highlight-headers): Add doc string. Simplify.
author Glenn Morris <rgm@gnu.org>
date Tue, 03 Mar 2009 04:08:09 +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