Mercurial > hg > xemacs-beta
view move-if-change @ 4194:4f2243a0dc04
[xemacs-hg @ 2007-09-30 11:59:34 by aidan]
Provide x-resource, msprinter as specifier tags on all builds.
author | aidan |
---|---|
date | Sun, 30 Sep 2007 11:59:36 +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