view move-if-change @ 45497:599066f40ebe

(f90-end-of-subprogram): Remove the final (forward-line 1). (f90-end-of-block, f90-beginning-of-block, f90-next-block-end, f90-previous-block-start): New navigation commands.
author Glenn Morris <rgm@gnu.org>
date Fri, 24 May 2002 22:00:21 +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