view move-if-change @ 93717:73275d7e89b7

(calendar-french-epoch): Rename french-calendar-epoch. Update callers. (calendar-french-month-name-array): Rename variable and function french-calendar-month-name-array. Update callers. (calendar-french-multibyte-month-name-array): Rename french-calendar-multibyte-month-name-array. Update callers. (calendar-french-day-name-array): Rename variable and function french-calendar-day-name-array. Update callers. (calendar-french-special-days-array): Rename variable and function french-calendar-special-days-array. Update callers. (calendar-french-multibyte-special-days-array): Rename french-calendar-multibyte-special-days-array. Update callers. (calendar-french-accents-p): Rename french-calendar-accents. Update callers. (calendar-french-leap-year-p): Rename french-calendar-leap-year-p. Update callers. (calendar-french-last-day-of-month): Rename french-calendar-last-day-of-month. Update callers. (calendar-french-to-absolute): Rename calendar-absolute-from-french. Keep old name as alias, update callers. (calendar-french-print-date): Rename calendar-print-french-date. Keep old name as alias, update callers. (calendar-french-goto-date): Rename calendar-goto-french-date. Keep old name as alias.
author Glenn Morris <rgm@gnu.org>
date Sat, 05 Apr 2008 19:14:28 +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