view move-if-change @ 75148:bdffb0038313

* net/tramp.el: (tramp-process-one-action): Remove `with-timeout'. (tramp-process-actions): Add optional parameter TIMEOUT. (tramp-open-connection-telnet, tramp-open-connection-rsh) (tramp-open-connection-su): Add timeout of 60".
author Michael Albinus <michael.albinus@gmx.de>
date Tue, 09 Jan 2007 05:04:15 +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