view move-if-change @ 3036:1c30c1cf589e

[xemacs-hg @ 2005-10-29 07:18:19 by youngs] 2005-10-29 Steve Youngs <steve@sxemacs.org> * unexelf.c (unexec): Fix data types. From: Andrey Slusar <anrays@gmail.com>
author youngs
date Sat, 29 Oct 2005 07:18:21 +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