Mercurial > hg > xemacs-beta
view move-if-change @ 809:285f13b079f3
[xemacs-hg @ 2002-04-07 16:01:30 by wmperry]
Make GTK compile again because of lack of device.h/window.h includes.
author | wmperry |
---|---|
date | Sun, 07 Apr 2002 16:01:32 +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