Here's the problem: I've got a large .xml file that has many different <tags> within a single line, however some of the data between the <tags> have line spacing in them. Some sample <tags> are;
<VulnerabilityID></VulnerabilityID><Severity></Severity><Summary>
</Summary><Execution></Execution>......
I'm able to grep for information on the line until the line break of the Summary tag. I would like to pull the info that is between the <Summary> and the </Summary> tags.
Is this done with grep, awk, egrep etc.
Thanks,
<VulnerabilityID></VulnerabilityID><Severity></Severity><Summary>
</Summary><Execution></Execution>......
I'm able to grep for information on the line until the line break of the Summary tag. I would like to pull the info that is between the <Summary> and the </Summary> tags.
Is this done with grep, awk, egrep etc.
Thanks,