如何使用wget下载所有项目euler的问题


1

我正在尝试下载所有的 项目欧拉 使用该命令的问题 wget -m http://www.projecteuler.net/ 但它下载的只是第一页 即 index.html 并停止。我试过用了 --user--password 但它给了我相同的结果。它们似乎也没有ftp站点,这可能是它无法工作的原因。 有没有其他方法来实现这一目标?

Answers:


6

如何使用 卷曲

试试这个命令行:

curl http://projecteuler.net/problem=[1-442] -o "problem#1.html"

显然,您必须在下载之前查看当前的问题数量。

与wget -m相比的好处是它只下载相关文件而不镜像整个站点。


哈哈,我喜欢它。我不知道 curl 这很好。有没有办法做同样的事情 wget
gebby

1
据我所知,wget不能那么简单。我想wget你需要一个脚本,它在一个带有正确URL的for循环中调用wget。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.