Oneliners with lynx - 02
lynx -nolist -dump \ 'http://www.reteam.org/board/viewforum.php?f=3' \ | grep -2 "Browsing the web" \ | tail -1 \ | awk '{ print $1 }'
lynx gets a thread list 01
grep extracts (with a context of two lines) the thread
tail gets the last line of the context
awk prints the first word it finds
Slideshow ^ |< << Slide 18 of 40 >> >| |