view move-if-change @ 73494:c2808e06f0d0

* ada-mode.texi (Project files, Identifier completion) (Automatic Casing, Debugging, Using non-standard file names) (Working Remotely): Fix typos.
author Chong Yidong <cyd@stupidchicken.com>
date Thu, 26 Oct 2006 14:30:51 +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