view move-if-change @ 90023:46eb9a242d5d

(get_next_display_element): In unibyte case, decide to display in octal form by checking a chacter by UNIBYTE_CHAR_HAS_MULTIBYTE_P.
author Kenichi Handa <handa@m17n.org>
date Fri, 15 Oct 2004 02:12:58 +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