view move-if-change @ 110962:b6368ce2d119

Tidy some nextstep README etc files. * nextstep/README: Move historical information to new file ../etc/NEXTSTEP. * nextstep/AUTHORS: Merge into ./etc/NEXTSTEP and remove file. * etc/NEXTSTEP: New file, extracted from ../nextstep/{AUTHORS,README}. * make-dist: No more nextstep/AUTHORS.
author Glenn Morris <rgm@gnu.org>
date Tue, 12 Oct 2010 20:17:59 -0700
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