How to extract links/urls from HTML with Sed

First download . Make the script executable with chmod: ```bash chmod +x list_urls.sed ``` Now pipe the HTML to the script: ```bash cat your.html | list_urls.sed ``` The output will be all URLs it finds... More [Sed scripts and documentation can be found here](http://sed.sourceforge.net/)