using a one line sed command , how could i get the something and someone value?
<value name="something">someone</value>
Using the following regex <value name="(.*)">(.*)<\/value>
i could retrieve the values with success using the site https://www.regex101.com/. But i'm not sure how could i do it using the command line.
Thanks in advance.