view move-if-change @ 56821:a6b7cffd2a54

(Basic Window): When using a window system, the value of point in a non-selected window is indicated by a hollow box. (Split Window): Side by side windows are separated by a scrollbar, if scrollbars are used. C-Mouse-2 on scrollbar now also works for toolkit scrollbars. (Change Window): Correct Mouse-2 vs Mouse-3 mess-up. (Window Convenience): Update bindings for `winner-undo' and `winner-redo'.
author Luc Teirlinck <teirllm@auburn.edu>
date Sat, 28 Aug 2004 02:14:16 +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