view move-if-change @ 43449:a6beccc5505e

Patch by Jonathan Kamens <jik@kamens.brookline.ma.us>. (vc-mode-line): Set vc-mode to nil if the file is not version-controlled. This is necessary, e.g., if the file has just been reverted, and thus was previously under version control but isn't any longer. (vc-find-file-hook): Likewise.
author André Spiegel <spiegel@gnu.org>
date Thu, 21 Feb 2002 20:56:58 +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