![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need to cut a part of a XML file | elbombillo | Shell Programming and Scripting | 9 | 12-10-2008 10:41 PM |
| comparing part of header with part of detailed records. | cmaroju | Shell Programming and Scripting | 1 | 12-02-2008 04:45 AM |
| cut a part of the file | kurosaki | Shell Programming and Scripting | 1 | 06-02-2008 09:14 AM |
| How to extract certain part of log file? | superHonda123 | Shell Programming and Scripting | 10 | 05-24-2008 12:56 PM |
| Help with multiple file rename - change case of part of file name | steve7 | UNIX for Dummies Questions & Answers | 7 | 06-30-2005 01:41 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Keep just a part of a file ...
hello all,
i would like your help on the following : GIVEN a text file with the following format : Code:
a b c d =============================================================== e Code:
=============================================================== the desired output would be : Code:
=============================================================== e |
|
||||
|
Quote:
Code:
awk '/=/{P=1}P' file1
Code:
awk '/^=+$/{P=1}P' file1
|
|
||||
|
thank you guys !
in the case that i would like to delete all the text that appears before the pattern : Code:
a b c =============================================================== ======================== RESULTS ============================== =============================================================== d e |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|