view move-if-change @ 51967:2693b0669cc1

Tramp 2.0.36 released. (Remote shell setup): Explain about problems with non-Bourne commands in ~/.profile and ~/.shrc.
author Kai Großjohann <kgrossjo@eu.uu.net>
date Sun, 20 Jul 2003 19:00:56 +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