view move-if-change @ 53453:28b887271e09

Various small changes in addition to the following. (Signaling Errors): Provide some more details on how `signal' constructs the error message. Add anchor to the definition of `signal'. (Error Symbols): Describe special treatment of `quit'. (Cleanups): Rename BODY argument of `unwind-protect' to BODY-FORM to emphasize that it has to be a single form.
author Luc Teirlinck <teirllm@auburn.edu>
date Tue, 30 Dec 2003 22:34:35 +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