view move-if-change @ 76184:8340a8571aa8

(vsize): Increase in 2 column case to make room for copyright notice. (nopagenumbers): Call to turn off numbers in 1 page document. (Getting Help, Modifying the Dired Buffer): Swap sections to balance column length in presence of copyright notice. (copyrightnotice): Uncomment so that notice is displayed.
author Glenn Morris <rgm@gnu.org>
date Tue, 27 Feb 2007 03:27:05 +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