Oneliners with lynx - 01
lynx -dump http://www.reteam.org/links.html \ | sed 's/^ *[0-9]*\. [^h]*//' \ | grep '^http'
lynx gets the dumped page
sed left-aligns http links and strips away others
grep takes only lines which begin with "http"
what do you get? A link extractor!
Slideshow ^ |< << Slide 20 of 37 >> >| |