Print only certain lines from a text file

Hi all,

I have a text file and I want to clean up the file by only print those lines start with the date. Is there anyway I can do that?

e(Be[?25he[2Je[?4le[?1le[0me[1;24re[?3he[?3h
                                                                                                              Wed Jun 1 2005 10:44AM
                                                                                                                              Page 1
                                                                SCAD                                                                
                                                     Location Log Recall Report                                                     
                                         Tue May 31 2005 12:00AM to Tue May 31 2005 11:59PM                                         
 __________________________________________________________________________________________________________________________________ 
|                                                                                                                                  |
| Locations: 656 SCAD FY101                         Transactions: Valid    Transaction Type: All            Reader Status: Online  |
|__________________________________________________________________________________________________________________________________|
|        |       |T|          |Reader|                   |                    |                     |M|O|O|                | Trans |
|  Date  | Time  |P| Location | Name |     ID Number     |  Cardholder Name   |       Action        |N|F|K|     Reason     |Amount |

 __________________________________________________________________________________________________________________________________ 
|05/31/05|02:55PM|1|FY101     |FY101A|000756582          |Perez, Luz Marina   |SUMMER VALIDATIONS   | | |Y|                |       |
|05/31/05|02:55PM|1|FY101     |FY101A|000756582          |Perez, Luz Marina   |SUMMER VALIDATIONS   | | |Y|                |       |
|05/31/05|02:56PM|1|FY101     |FY101A|000756582          |Perez, Luz Marina   |SUMMER VALIDATIONS   | | |Y|                |       |
|05/31/05|02:59PM|1|FY101     |FY101A|                   |                    |No Sale              | | |Y|                |       |
|05/31/05|02:59PM|1|FY101     |FY101A|000756582          |Perez, Luz Marina   |SUMMER VALIDATIONS   | | |Y|                |       |
|05/31/05|03:29PM|1|FY101     |FY101A|                   |                    |No Sale              | | |Y|                |       |
|05/31/05|05:21PM|1|FY101     |FY101A|000668279          |MCNEAL,CORVET J.    |SUMMER VALIDATIONS   | | |Y|                |       |

 __________________________________________________________________________________________________________________________________ 

                                                          Blackboard Inc.                                                        End












































e[24;1He[Ke[?3l
e[He[J

Thanks

CT

egrep -e '(AM\||PM\|)' input.txt > output.txt

djp