view move-if-change @ 31666:3cc588d57c8c

(info-node, info-xref): Add dark-background variants. (info-header-xref, info-header-node): Change to inherit from non-header faces.
author Miles Bader <miles@gnu.org>
date Sun, 17 Sep 2000 17:03:20 +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