view move-if-change @ 96798:7c353b3ccb0a

* term/ns-win.el (ns-submit-bug-report): Function removed. Bug reports go to the main Emacs bug list. (ns-handle-args, ns-spi-service-call): Doc fixes. (info-ns-emacs): Function removed. Nextstep port manual will be merged into the Emacs manual, so no separate link needed.
author Chong Yidong <cyd@stupidchicken.com>
date Fri, 18 Jul 2008 17:44:42 +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