view move-if-change @ 62358:75b110fa35a8

(calc-store-value): Return a string rather than display it as a message. Use calc-var-name for variable name. (calc-store-into): Add the result of calc-store-value to message. (calc-copy-variable): Add a message. (calc-store-exchange): Improve error messages. (calc-store-binary, calc-store-map): Don't reset the values of special constants.
author Jay Belanger <jay.p.belanger@gmail.com>
date Sun, 15 May 2005 05:20: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