![]() |
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 |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| removing certain paragraphs for matching patterns | kaushys | Shell Programming and Scripting | 7 | 08-19-2008 03:32 PM |
| how to filter out some paragraphs in a file | cnlhap | Shell Programming and Scripting | 7 | 08-19-2008 03:03 PM |
| Using sed to remove paragraphs with variables | BlueberryPickle | UNIX for Dummies Questions & Answers | 1 | 07-03-2008 09:46 AM |
| how to sort paragraphs by date within a file | nabmufti | Shell Programming and Scripting | 1 | 02-13-2008 05:33 PM |
| fetching a web page in C | rayne | High Level Programming | 4 | 08-08-2007 09:39 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
fetching paragraphs with SED
hi,
i am a SED newbie and i need some help. i have a log file as shown below. and i want to search specific Error Code, and fetch the whole paragraph. [2009-02-01 15:42:51,630] ... [2009-02-01 16:52:51,683] ... ................. ....ErrCode... ................. [2009-02-01 17:49:33,686] ... [2009-02-01 17:59:00,000] ... [2009-02-01 18:52:50,000] ... ................. ....ErrCode... let's say, i want to search "ErrCode" and it will show me that. how can i do this with SED : [2009-02-02 16:52:51,683] ... ................. ....ErrCode... ................. [2009-02-01 18:52:50,000] ... ................. ....ErrCode... thanks.. |
|
|||||
|
If your "paragraphs" are separated by blank lines:
Code:
sed -e '/./{H;$!d;}' -e 'x;/ErrCode/!d;'
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|