view move-if-change @ 106417:8374ccacc79a

(Displaying the Diary): Holidays may be in the buffer or mode line. Don't mention invisible text or the details of diary-print-entries here, only in cal-xtra. (Format of Diary File): Mention that the "date on first line" format only really affects the simple display.
author Glenn Morris <rgm@gnu.org>
date Sat, 05 Dec 2009 03:08:30 +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