view move-if-change @ 38886:f035ca54b24a

2001-08-21 Andrew Choi <akochoi@cse.cuhk.edu.hk> * src/macterm.c (mac_scroll_area): Call CopyBits with local coordinates and portBits instead of global coordinates and screenBits. Set fore color and back color to black and white, respectively, before calling CopyBits. * src/macterm.c (local_to_global_coord): Comment out.
author Andrew Choi <akochoi@shaw.ca>
date Tue, 21 Aug 2001 10:06:09 +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