view move-if-change @ 789:06b73d289047

[xemacs-hg @ 2002-03-21 15:13:41 by wmperry] Fix typos in emacs_gtk_format_magic_event, courtesy of Malcolm Purvis
author wmperry
date Thu, 21 Mar 2002 15:13:43 +0000
parents 376386a54a3c
children
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