view move-if-change @ 58861:2e075e3c65a4

(Saving Customizations): Emacs only loads the custom file automatically after the init file in version 21.4 or later. Adapt text and examples to this fact.
author Luc Teirlinck <teirllm@auburn.edu>
date Thu, 09 Dec 2004 01:29:55 +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