view move-if-change @ 3438:14fbcab7c67b

[xemacs-hg @ 2006-06-02 22:18:05 by adrian] xemacs-21.5-clean: Welcome nl.xemacs.org and Thanks! -------------------- ChangeLog entries follow: -------------------- lisp/ChangeLog addition: 2006-06-03 Adrian Aichner <adrian@xemacs.org> * package-get.el (package-get-download-sites): Welcome nl.xemacs.org and Thanks! * package-get.el (package-get-pre-release-download-sites): Ditto.
author adrian
date Fri, 02 Jun 2006 22:18:08 +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