view move-if-change @ 1198:c1e69bcf8d07

[xemacs-hg @ 2003-01-10 14:12:40 by youngs] 2003-01-08 Andy Piper <andy@xemacs.org> * unexcw.c (copy_executable_and_dump_data_section): Set the stack reserve size during unexec().
author youngs
date Fri, 10 Jan 2003 14:12:41 +0000
parents 376386a54a3c
children
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