Hi guys,
I am looking for such a perl program that matches a pattern in file and print all remaining lines below the pattern.
for example.
If i have a file like..
Column1 Column2
ABC DEF
GHI KJL
ADG MKO
HGI KIO
HFO PIL
This is a my pattern
Groupname GroupLabel Id
ABC Function 123
DER Fucntion1 478
------------------------------
Now i want to print all the lines after 'This is a my pattern' keyword i.e.,
Groupname GroupLabel Id
ABC Function 123
DER Fucntion1 478
Please help me out
Thanks in advance