view move-if-change @ 58546:87b2b810675b

(calc-flush-caches): Remove unnecessary variables. (math-lud-cache, math-log2-cache, math-radix-digits-cache) (math-radix-float-cache-tag, math-random-cache, math-max-digits-cache) (math-integral-cache, math-units-table, math-format-date-cache) (math-holidays-cache-tag): Declare them. (math-moc-func): New variable. (math-map-over-constants, math-map-over-constants-rec): Replace variable func by declared variable.
author Jay Belanger <jay.p.belanger@gmail.com>
date Fri, 26 Nov 2004 22:34:59 +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