view move-if-change @ 2668:96ddc1a1b3dd

[xemacs-hg @ 2005-03-15 22:26:29 by adrian] Fix for typo detected by CVS update conflict.
author adrian
date Tue, 15 Mar 2005 22:26:29 +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