如何从服务器(特别是 Anonfiles)下载 300 个文件的列表

如何从服务器(特别是 Anonfiles)下载 300 个文件的列表

我有一个很长的文件列表,超过 300 个,但我给出了一个估计值。

我有这样的:

https://anonfiles.com/1.mp4 https://anonfiles.com/2.mp4 https://anonfiles.com/3.mp4 https://anonfiles.com/4.mp4 https://anonfiles.com/5.mp4

是否有可以为任何操作系统执行此操作的桌面软件?

我尝试了另一个线程中推荐的 Tabsave 和 Chronos,但 tabsave 只保存了 400 个 HTML 文件,这不是我需要的。

谢谢

答案1

对于任何兼容 POSIX 的系统,请使用 curl。curl 的用法:https://man7.org/linux/man-pages/man1/curl.1.html. 对于 Windows,您可以使用:

  1. WSL 用于模拟 Linux。
  2. PowerShell:
    2.1。For手册:https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_for?view=powershell-7.2 2.2. 如何在 PowerShell 中发出请求:https://lazyadmin.nl/powershell/download-file-powershell

bash 的算法:

curl "https://anonfiles.com/[1-400].mp4"

相关内容