gpt4 book ai didi

xml - 如何在 shell 脚本中解析 rss-feeds/xml

转载 作者:数据小太阳 更新时间:2023-10-29 01:42:00 26 4
gpt4 key购买 nike

我想解析 rss 提要并下载 podcasts在我的 ReadyNas 上,它无论如何都在 24/7 运行。

所以我正在考虑让一个 shell 脚本定期检查提要并生成 wget 来下载文件。

进行解析的最佳方法是什么?

谢谢!

最佳答案

有时一个简单的 shell 标准命令就足够了:

 wget -q -O- "http://www.rss-specifications.com/rss-podcast.xml" | grep -o '<enclosure url="[^"]*' | grep -o '[^"]*$' | xargs wget -c

当然这并不是在所有情况下都有效,但通常已经足够了。

关于xml - 如何在 shell 脚本中解析 rss-feeds/xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/443991/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com