view move-if-change @ 81061:a0c6ca9f4685

Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 222-223) - Update from CVS 2007-05-24 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/message.el (message-narrow-to-headers-or-head): Ignore mail-header-separator in the body. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-768
author Miles Bader <miles@gnu.org>
date Thu, 24 May 2007 20:18:14 +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