view move-if-change @ 5810:be31f7878b0d

Fix bignum/bigfloat memory leaks. See xemacs-patches message <CAHCOHQmYDTHSUhVSRmyGpoeUAX3kS6Ua14p6FcNzzDm0i3GaRQ@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Tue, 23 Sep 2014 16:50:48 -0600
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