view move-if-change @ 104638:fec993ec6e85

(send_process): Use encode_coding_object instead of encode_coding_string to perform eol-conversion even if the string is unibyte.
author Kenichi Handa <handa@m17n.org>
date Thu, 27 Aug 2009 11:12:54 +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