view move-if-change @ 59272:2d8dd256436f

(Killing): Reorganize section. No more TeX-only text; put the node command at start of chapter. But the first section heading is used only in TeX. Rewrite the text to read better in this mode. (Graphical Kill): New subnode gets some of the text that used to be in the first section.
author Richard M. Stallman <rms@gnu.org>
date Sat, 01 Jan 2005 05:02:09 +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