view move-if-change @ 74158:07973a5d9639

(smtpmail-send-it): Copy buffer-file-coding-system from the mail buffer. Possibly add a MIME header for the message encoding. Bind coding-system-for-write around the call to mail-do-fcc. Use smtpmail-code-conv-from to encode queued mail messages.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 24 Nov 2006 14:32:19 +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