Mercurial > hg > xemacs-beta
view move-if-change @ 684:c6ad4a798ab9
[xemacs-hg @ 2001-12-03 06:49:11 by youngs]
2001-11-29 Charles G Waldman <cgw@xemacs.org>
* startup.el (initial-scratch-message): be correct about case
author | youngs |
---|---|
date | Mon, 03 Dec 2001 06:49:11 +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