view move-if-change @ 57197:02ff6d10210c

Update copyright, and add missing centuries. Update maintainer. From H?n Malmedal <hmalmedal@yahoo.no>: (holiday-advent): Report on a specified day offset from advent, not just advent. (holiday-easter-etc): Report on one specified day offset from easter, not all easter holidays. Various Easter holidays moved to `christian-holidays' variable in calendar.el.
author Glenn Morris <rgm@gnu.org>
date Wed, 22 Sep 2004 23:19:58 +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