- 论坛徽章:
- 0
|
问题是这样,我在博客上面加了一个天气预报,也就是小偷那种,用的是php里面的xml_rss,抓取yahoo的rss天气预报,先用fetch抓取xml文件到tmp目录里面,程序就读这个文件了,设置cron每小时抓一次,直接读远程文件速度太慢了。
但是yahoo的xml文件里面含有链接,我想删除它的链接,如果使用纯命令,应该用哪些命令结合起来删除之呢?比如find ,rm ,mv,grep
完整的xml文件如下 ,我想删除的是这个链接:
- <a href="http://us.rd.yahoo.com/dailynews/rss/weather/Chongqing__CH/*http://xml.weather.yahoo.com/forecast/CHXX0017_c.html">Full Forecast at Yah
- oo! Weather</a><BR/>
复制代码
- <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <rss version="2.0" xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#">
- <channel>
- <title>Yahoo! Weather - Chongqing, CH</title>
- <link>http://us.rd.yahoo.com/dailynews/rss/weather/Chongqing__CH/*http://xml.weather.yahoo.com/forecast/CHXX0017_c.html</link>
- <description>Yahoo! Weather for Chongqing, CH</description>
- <language>en-us</language>
- <lastBuildDate>Fri, 28 Apr 2006 4:00 pm CST</lastBuildDate>
- <ttl>60</ttl>
- <yweather:location city="Chongqing" region="" country="CH" />
- <yweather:units temperature="C" distance="km" pressure="mb" speed="kph" />
- <yweather:wind chill="23" direction="190" speed="14" />
- <yweather:atmosphere humidity="61" visibility="600" pressure="0" rising="2" />
- <yweather:astronomy sunrise="6:15 am" sunset="7:29 pm" />
- <image>
- <title>Yahoo! Weather</title>
- <width>142</width>
- <height>18</height>
- <link>http://weather.yahoo.com/</link>
- <url>http://us.i1.yimg.com/us.yimg.com/i/us/nws/th/main_142b.gif</url>
- </image>
- <item>
- <title>Conditions for Chongqing, CH at 4:00 pm CST</title>
- <geo:lat>29.52</geo:lat>
- <geo:long>106.48</geo:long>
- <link>http://us.rd.yahoo.com/dailynews/rss/weather/Chongqing__CH/*http://xml.weather.yahoo.com/forecast/CHXX0017_c.html</link>
- <pubDate>Fri, 28 Apr 2006 4:00 pm CST</pubDate>
- <yweather:condition text="Sunny" code="32" temp="23" date="Fri, 28 Apr 2006 4:00 pm CST" />
- <description><![CDATA[
- <img src="http://us.i1.yimg.com/us.yimg.com/i/us/we/52/32.gif" /><br />
- <b>Current Conditions:</b><br />
- Sunny, 23 C<BR /><BR />
- <b>Forecast:</b><BR />
- Fri - Partly Cloudy. High: 24 Low: 15<br />
- Sat - Mostly Sunny. High: 28 Low: 16<br />
- <br />
- <a href="http://us.rd.yahoo.com/dailynews/rss/weather/Chongqing__CH/*http://xml.weather.yahoo.com/forecast/CHXX0017_c.html">Full Forecast at Yah
- oo! Weather</a><BR/>
- (provided by The Weather Channel)<br/>
- ]]></description>
- <yweather:forecast day="Fri" date="28 Apr 2006" low="15" high="24" text="Partly Cloudy" code="30" />
- <yweather:forecast day="Sat" date="29 Apr 2006" low="16" high="28" text="Mostly Sunny" code="34" />
- <guid isPermaLink="false">CHXX0017_2006_04_28_16_0_CST</guid>
- </item>
- </channel>
- </rss>
- <!-- p1.weather.scd.yahoo.com uncompressed Fri Apr 28 01:23:22 PDT 2006 -->
复制代码
[ 本帖最后由 Kenbaby 于 2006-4-28 17:00 编辑 ] |
|