view move-if-change @ 100912:a0fac105b911

Require pmail; delete compiler defvars. Delete most declare-function calls. (pmail-keywords, pmail-deleted-label, pmail-attributes): Vars deleted. (pmail-attribute-p, pmail-keyword-p): Fns deleted. (pmail-keywords, pmail-parse-file-keywords, pmail-install-keyword): (pmail-force-make-label, pmail-quote-label-name): Fns deleted. (pmail-last-label, pmail-last-multi-labels): Vars moved from pmail.el. (pmail-read-label): Don't switch buffers, don't parse file keywords. (pmail-set-label): Major rewrite. (pmail-next-labeled-message): Call pmail-get-labels and match it.
author Richard M. Stallman <rms@gnu.org>
date Mon, 05 Jan 2009 15:48: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