|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | 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. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Need to extract text repetitively between two patterns
Hi All, I want to extract the text between some pattern which occurs repeatedly in a file. For example my input is like, Code:
[javac] [checking .....
[javac] [checking .....
[javac] [checking .....
[javac] [checking .....
[javac] /home/.....
..........java:25: cannot find symbol
[javac]
[javac]............
[javac] /home/......
[javac] [loading java/lang/Math.class(java/lang:Math.class)]
[javac] /home/.......
[javac] [checking.......
[javac] [checking.......
[javac] [checking.......I want to display text between "[javac] /home" upto "[javac] [" including these lines. My output should look like.. Code:
[javac] /home/.....
..........java:25: cannot find symbol
[javac]
[javac]............
[javac] /home/......
[javac] [loading ...
[javac] /home/.......
[javac] [checking.......Please help me to do that in shell script. |
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
Thanks a lot..It works!!
---------- Post updated at 05:23 PM ---------- Previous update was at 05:20 PM ---------- Thanks balajesuri... ![]() |
| Sponsored Links | ||
|
![]() |
| Tags |
| script to extract text |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Extract line between two patterns | rajamohan | Shell Programming and Scripting | 4 | 12-03-2012 01:55 AM |
| PERL: extract lines between two patterns | mnithink | Shell Programming and Scripting | 11 | 01-23-2012 10:58 PM |
| Extract patterns and copy them in different files | shoaibjameel123 | Shell Programming and Scripting | 5 | 08-25-2011 11:50 PM |
| Extract certain patterns from file. | shoaibjameel123 | Shell Programming and Scripting | 2 | 07-08-2011 09:56 AM |
| To extract the string between two patterns | aajan | Shell Programming and Scripting | 6 | 09-17-2007 02:41 AM |
|
|