view move-if-change @ 106560:e4fa191eaf50

Work around warning about g_set_prgname() called multiple times. * xterm.c (my_log_handler): New function. (x_term_init): Set my_log_handler as log handler during gtk_init so we can filter out buggy messages. (bug #5120).
author Jan Djärv <jan.h.d@swipnet.se>
date Sun, 13 Dec 2009 14:24:22 +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