急,如何找出下面的字段???

急,如何找出下面的字段???

+++++ Argos Profiles Completion Report Generated by PHY_COMPLETE Script +++
                            +++ +++++ 2008/Jun/26 09:15:00 +++

        Location: /home/liuzh/qc/phyfiles
        Incomplete = profile data record with all zero values


        Processed PHY Profile  Length   Incomplete   Completion
          0048_80054_003.phy  114          0               114
          0050_80056_003.phy  115       20                 95
          0051_80057_003.phy  118       13                    105

如何在上面的内容中找出Incomplete的值大于0的行,且要把所有Incomplete大于0的文件名,即
Processed PHY Profile的值写到另一个文件中?      
FYI:
引用:
-(dearvoid@LinuxEden:Forum)-(~/tmp)-
[$$=31802 $?=0] ; cat file
+++++ Argos Profiles Completion Report Generated by PHY_COMPLETE Script +++
                +++ +++++ 2008/Jun/26 09:15:00 +++

    Location: /home/liuzh/qc/phyfiles
    Incomplete = profile data record with all zero values


    Processed PHY Profile  Length   Incomplete   Completion
      0048_80054_003.phy   114       0            114
      0050_80056_003.phy   115       20           95
      0051_80057_003.phy   118       13           105

-(dearvoid@LinuxEden:Forum)-(~/tmp)-
[$$=31802 $?=0] ; awk 'b && $3 > 0 { print $1; } /Processed PHY Profile/ { b = 1; }' file
0050_80056_003.phy
0051_80057_003.phy
-(dearvoid@LinuxEden:Forum)-(~/tmp)-
[$$=31802 $?=0] ; bye
      
非常感谢!