view move-if-change @ 3352:8dbdcd070418

[xemacs-hg @ 2006-04-22 15:18:54 by stephent] Improved comment on internal Unicode tables. <87zmidtzky.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Sat, 22 Apr 2006 15:18:55 +0000
parents 376386a54a3c
children
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