如何使用 shell 脚本 read/search 网页中的特定内容

How to read/search specific content in a webpage using shell scripting

我是 shell 脚本的初学者。

我正在尝试编写一个脚本,其中的一部分涉及从网页读取值。在这种情况下,shell 脚本会尝试通过转到电影的 IMDB 页面来获取电影的 IMDB 评级。

有人可以建议我如何实现这一点以及我需要学习哪些主题吗?

谢谢。

您可以使用 wget and curl to get the page. Then you'll need to use regex or some other string manipulation to get the information you need from that. It would be a lot easier to use a library 为您做一些这些事情。