view move-if-change @ 75630:d1e322303342

(Top): Update the top-level menus. Make the detailed menu headers compliant with Texinfo guidelines and with what texnfo-upd.el expects. Add comments to prevent people from inadvertently modifying the key parts needed by `texinfo-multiple-files-update'.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 03 Feb 2007 15:25:43 +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