Mercurial > hg > xemacs-beta
view move-if-change @ 799:03d9f9084848
[xemacs-hg @ 2002-03-30 04:46:47 by youngs]
2002-03-30 Steve Youngs <youngs@xemacs.org>
* package-index.LATEST.gpg: Update to current reality.
* package-index.LATEST.pgp: Ditto.
author | youngs |
---|---|
date | Sat, 30 Mar 2002 04:46:48 +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