view move-if-change @ 522:19559cacc941

[xemacs-hg @ 2001-05-09 11:46:58 by martinb] XEmacs 21.5.1 "anise" is released.
author martinb
date Wed, 09 May 2001 11:48:28 +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