Body
Ali of OpenCraft wanted an RSS feed aggregator that'll display the latest items like what we see on the T.V.
I had a perl script that'll grab the latest items and email them to you. I modified it to print the titles to the standard output. You can then use osd_cat to display it.
Now what ? I thought that I can rewrite it to use the traditional UNIX tools and the end was:
cat rss.xml | sed -e 's/<title>\([^<]*\)<\/title>/\1/g' | tr -s " " | grep "^ \w" | sed -e 's/^ //'
- 2680 views
Add new comment