view move-if-change @ 45784:95b7f625cdf5

(Info-fontify-node): Compute header line specially if node has no next, previous or up links. Hide the part of the first line that is used in the header. Use Info-next-link-keymap, etc. (Info-next-link-keymap, Info-prev-link-keymap) (Info-up-link-keymap): New variables.
author Richard M. Stallman <rms@gnu.org>
date Wed, 12 Jun 2002 15:50:15 +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