Mercurial > hg > xemacs-beta
view move-if-change @ 4011:05aef5833219
[xemacs-hg @ 2007-06-12 14:42:14 by adrian]
another cosmitic fix.
author | adrian |
---|---|
date | Tue, 12 Jun 2007 14:42:14 +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