view move-if-change @ 106416:54ea338ce280

(Advanced Calendar/Diary Usage): Update menu. (Diary Customizing): Holidays may be in the buffer or mode line. Move diary-print-entries to the "Diary Display" section. (Diary Display): New section, split out from "Fancy Diary Display". Explain the limitations of simple display, and how to print it.
author Glenn Morris <rgm@gnu.org>
date Sat, 05 Dec 2009 03:08: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