view move-if-change @ 26126:0a2d7cf0b6db

Installing changes for RMS - stole lock. - Brian
author Brian Youmans <3diff@gnu.org>
date Thu, 21 Oct 1999 19:56:18 +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