使用脚本语言提取源代码

使用脚本语言提取源代码

我正在尝试提取网站的源代码。我在脚本文件中编写了如下代码:

curl http://www.example.com

输出为:

<html> <head><title>301 Moved Permanently</title></head> <body bgcolor="white"> <center><h1>Moved Permanently</h1></center> </body> </html>

就这些!我无法获取完整代码。但为什么呢?我应该使用其他命令吗(如果有的话)?

我想获取网站的源代码(我的意思是 html)但我只看到几行......

答案1

您应该使用-L“遵循重定向”选项,如所述这里当然还有男人卷曲

curl -L http://www.example.com

也许甚至足以使用

curl https://www.example.com

因为它说这里出现 301 响应的最常见原因是之前将页面从 迁移httphttps

相关内容