view move-if-change @ 559:5101772788b2

[xemacs-hg @ 2001-05-23 10:02:02 by ben] cvs utilitzes a 'best-effort' protocol when checking in'
author ben
date Wed, 23 May 2001 10:02:19 +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