view move-if-change @ 107471:2348ff8393d2

Synch with Gnus trunk ===================== 2010-03-22 Teodor Zlatanov <tzz@lifelogs.com> * gnus/gnus-setup.ast: Add finish links to the top nodes. * gnus/news-server.ast: Add some trivial validation.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Tue, 23 Mar 2010 07:32:05 +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