The sed command for this will be
sed -n 's|font-size="[0-9]*".\(.*\)</tspan.*|\1|p' file.xml
------------------- -- ---------
prefix part \1 suffix
This is how it works,
- The
-nsuppresses printing of all lines from the buffer - the
pat the end indicates the replaced buffer is to be printed - the
'|'used as a separator instead of the usual'/'helps filtering path separators easily - the search string is matching for all content between
font-size="[0-9]*".and ` - the part between
\(and\)is the one we are interested in- the
\1indicates we want to retain that in the buffer for the print
- the
This command uses the group operator which is described here.
On your file this gives,
/Volumes/Secondary500/Temp/Untitled-2_Layer 1 copy 2.pdf
/Volumes/Secondary500/Temp/Untitled-2_Layer 1 copy.pdf
/Volumes/Secondary500/Temp/Untitled-2_Layer 1.pdf
Note that it is important to get the correct prefix and suffix strings to get all the matches. In your example these are the font-size and tspan parts i found above. But, that may not be the case with all the file strings in your file. So check that.
