view move-if-change @ 1222:0350fea81e65

[xemacs-hg @ 2003-01-18 04:48:18 by james] Describe Steve Youngs' probme with the PostgreSQL module and --error-checking=all
author james
date Sat, 18 Jan 2003 04:48:18 +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