Mercurial > hg > xemacs-beta
view move-if-change @ 1988:3432736e50ad
[xemacs-hg @ 2004-04-06 18:08:14 by james]
Change test -e to test -r for portability (affects Solaris 5.8, at least).
author | james |
---|---|
date | Tue, 06 Apr 2004 18:08:15 +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