view move-if-change @ 97383:fc2bd95cda23
Use @copying. Change copyright of authors with assignment to FSF.
Change license to GFDL.
(Top): Remove outdated references.
author |
Glenn Morris <rgm@gnu.org> |
date |
Sun, 10 Aug 2008 00:59:27 +0000 (2008-08-10) |
parents |
354e0c45cedf |
children |
14a97ab281d5 |
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