It's not just you.  I grep out the antiword noise in my `pull' wrapper:

#!/bin/rc
# pull - pull system files from 1127
rfork e
opts=()
done=0
while (~ $done 0 && test $#* -gt 0 && ~ $1 -*) {
        switch ($1) {
        case -[cns];    opts=($opts $1)
        case --;        done = 1                # no break in rc, alas
        case -*
                echo usage: $0 '[-cns][file]...' >[1=2]
                exit usage
        }
        shift
}

9fs boot
9fs sources
if (test ! -e /n/sources/plan9) {
        rm -f /srv/sources
        9fs sources
}
if (test ! -e /n/sources/plan9) {
        rm -f /srv/sources
        echo $0: sources did not mount >[1=2]
        exit no-sources
}

label 'rc pull' >[2]/dev/null
replica/pull -v $opts /dist/replica/network $* >[2=1]  |
        tee $home/pull/log |
        grep -v ' locally created
 metadata locally changed
 will not remove
^sys/lib/fax/
^lib/face/.*contents locally modified; will not update metadata
^sys/src/9/pc/pc.*: locally modified; will not update
^m .*antiword|^(. 
)?(386/9.*|adm/.*|dist/replica/network|lib/face/48x48x./\.dict|mail/lib/ignore|rc/bin/.*rc|sys/lib/man/lookman/index|sys/log/.*|sys/man/[0-9]/INDEX.*|sys/src/9/boot/libboot\.a.)($|[:
 ])'

Reply via email to