view move-if-change @ 28509:022a7fd54bfe

* intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for a pointer that looks like a lisp object. (SET_INTERVAL_OBJECT): Don't explicitly compare the object with zero, instead see whether it's an integer object, since they can't have intervals. (GET_INTERVAL_OBJECT): Simply assign to the destination.
author Ken Raeburn <raeburn@raeburn.org>
date Wed, 05 Apr 2000 18:53:39 +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