view move-if-change @ 5850:10dd81a27d91

Fix note in README about which repo to push to.
author Mike Kupfer <mike.kupfer@xemacs.org>
date Sat, 28 Feb 2015 17:02:28 -0800
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