view move-if-change @ 26127:6ffcb00e5781

Installed changes for RMS. I don't really understand why I always have to make a separate change comment for stealing a lock, and then open the file again and make another change comment to actually make the change. Wouldn't one comment be enough? - Brian
author Brian Youmans <3diff@gnu.org>
date Thu, 21 Oct 1999 20:00:48 +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