view move-if-change @ 52429:780f2d29c5f1

Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-34 Create the info subdir at build-time if necessary
author Miles Bader <miles@gnu.org>
date Thu, 04 Sep 2003 16:01:15 +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