使用 cli (zsh/bash) 通过 http 服务器获取文件列表
大家好,
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一行 wget 来完成此操作,如下所示:
每个参数的含义如下:
You can do this with one line of wget as follows:
Here's what each parameter means: