Mercurial > hg > xemacs-beta
view move-if-change @ 4293:bea04dade8af
[xemacs-hg @ 2007-11-28 21:23:55 by aidan]
Don't nag about the mail user agent with bug reports, part 1 of 2.
author | aidan |
---|---|
date | Wed, 28 Nov 2007 21:23:57 +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