使用 cli (zsh/bash) 通过 http 服务器获取文件列表

发布于 2024-10-21 09:17:21 字数 430 浏览 5 评论 0原文

大家好,

我在 OSX 上。我经常使用终端,这是我以前使用 Linux 时养成的习惯,但从未超越。我想下载此http服务器中列出的文件:http://files.ubuntu-gr。 org/ubuntistas/pdfs/

我用鼠标选择它们,将它们放入 txt 文件中,然后在终端上给出以下命令:

for i in `cat ../newfile`; do wget http://files.ubuntu-gr.org/ubuntistas/pdfs/$i;done

我想这很不言自明。

我想知道是否有更简单、更好、更酷的方法来使用 wget 或 curl 下载此“链接”pdf 文件。

问候

Greetings to everyone,

I'm on OSX. I use the terminal a lot as a habit from my Linux old days that I never surpassed. I wanted to download the files listed in this http server: http://files.ubuntu-gr.org/ubuntistas/pdfs/

I select them all with the mouse, put them in a txt files and then gave the following command on the terminal:

for i in `cat ../newfile`; do wget http://files.ubuntu-gr.org/ubuntistas/pdfs/$i;done

I guess it's pretty self explanatory.

I was wondering if there's any easier, better, cooler way to download this "linked" pdf files using wget or curl.

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谈情不如逗狗 2024-10-28 09:17:21

您可以使用一行 wget 来完成此操作,如下所示:

wget -r -nd -A pdf -I /ubuntistas/pdfs/ http://files.ubuntu-gr.org/ubuntistas/pdfs/

每个参数的含义如下:

  • -r 使 wget 递归地跟踪链接
  • -nd 避免创建目录,因此所有文件都存储在当前目录中
  • -A 限制通过类型 -I 保存的文件
  • 受目录限制(如果您不想下载整个互联网,这一点很重要;)

You can do this with one line of wget as follows:

wget -r -nd -A pdf -I /ubuntistas/pdfs/ http://files.ubuntu-gr.org/ubuntistas/pdfs/

Here's what each parameter means:

  • -r makes wget recursively follow links
  • -nd avoids creating directories so all files are stored in the current directory
  • -A restricts the files saved by type
  • -I restricts by directory (this one is important if you don't want to download the whole internet ;)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文