Ho una stringa con un testo e diversi URL. Come posso estrarre un URL specifico (di un dominio specifico) con sed? Ad esempio, ho questo:
Text foo bar Text foo bar <br /><br /> http://www.this.file <br />http://another.file <br />http://mine.com/this.html <br />http://myURL.net/files/IWANTthis <br />http://www.google.com/thisnot
e sed
deve restituire questo:
http://myURL.net/files/IWANTthis
| sed s/<br \/>/<br \/>\n/g | grep "myURL\.net"
grep
?