view move-if-change @ 48603:ac86b769c135

Added a lot of options to reduce disk size of both the installer and the final application. Added option to make installer generate self-contained Emacs.app. Now nolonger creates a "full-dist" by default, by omitting .el files that have already been compiled.
author Steven Tamm <steventamm@mac.com>
date Sat, 30 Nov 2002 22:06:23 +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