view move-if-change @ 104679:444c4d551cc7

* tramp.texi (Version Control): Remove. (Obtaining Tramp): Update cvs checkout command. Remove nightly tarballs reference. (External methods): Correct `scpc' concept index entries. New method `rsyncc'. (External packages): New subsections "Filename completion" and "File attributes cache".
author Michael Albinus <michael.albinus@gmx.de>
date Fri, 28 Aug 2009 14:36:41 +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