view move-if-change @ 55881:79a700a71463

(comint-replace-by-expanded-history-before-point): Obey `start' as the docstring says. (comint-send-input, comint-snapshot-last-prompt, comint-output-filter) (comint-update-fence): Prevent font-lock from running unnecessarily. (comint-dynamic-list-completions): Use with-current-buffer.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 02 Jun 2004 00:02:18 +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