show/hide this revision's text 2 added 123 characters in body; added 102 characters in body

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 -n suppresses printing of all lines from the buffer
  • the p at 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 \1 indicates we want to retain that in the buffer for the print

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.

show/hide this revision's text 1

The sed command for this will be

 sed  -n 's|font-size="[0-9]*".\(.*\)</tspan.*|\1|p' file.xml

This is how it works,

  • The -n suppresses printing of all lines from the buffer
  • the p at 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 \1 indicates we want to retain that in the buffer for the print

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.