view myrss/myrss_update.sh @ 9:fbd8c30c465c

add more RSS feeds; normalize-space in step2.xsl and "a hrefs"; myrss_update.sh now outputs a more complete HTML document to stdout
author paulo@twcdns.fastsearch.net
date Sun, 12 Sep 2010 23:36:32 -0700
parents 8afd18e103c7
children 5a0c2ee709f8
line source
1 #!/bin/sh
3 TIMESTAMP=$(date '+%FT%T%:z')
5 echo '<HTML>'
6 echo '<HEAD>'
7 echo "<TITLE>${TIMESTAMP}</TITLE>"
8 echo '<LINK REL="stylesheet" TYPE="text/css" HREF="index.css">'
9 echo '</HEAD>'
11 echo '<BODY>'
12 echo "<H1>${TIMESTAMP}</H1>"
14 while read LINE
15 do
16 wget -q -U '' -O - ${LINE} | xsltproc step1.xsl - | xsltproc step2.xsl -
17 done < FEEDS
19 echo '</BODY>'
20 echo '</HTML>'