> > ignore is the operator applied to any argument after the first, by
> > my reading and experimenting with the code.
> 
> You mean that 
> 
>       test -f /dev/sdC0/plan9 -o -f /dev/sdC1/plan9
> 
> would not work as expected?

rather
        test -f a b .... n
actually is the same as
        test -f a
try it.

- erik

Reply via email to