view move-if-change @ 70042:abc53f51fd3e

(coordinates_in_window): On the vertical border, calculate the row number measured from the top of the window, not the top of the frame.
author Nick Roberts <nickrob@snap.net.nz>
date Mon, 17 Apr 2006 00:24:50 +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