view move-if-change @ 71164:1f33ca9aff72

Add Make 3.81 to the list of Make & shell combinations known to work.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 02 Jun 2006 10:13:20 +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