仅 WGET FTP 目录中的文件名
我正在尝试创建 ftp 目录中可用文件的动态列表。我认为 wget 可以帮助解决这个问题,但我不太确定如何...所以我的问题是:
使用 wget 从 ftp 目录检索文件名的语法是什么>?
I am attempting to create a dynamic list of files available in an ftp directory. I assume wget
can help with this but I'm not really sure how...so my question is:
What is the syntax for retrieving file names from an ftp directory using wget
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需执行
这将生成两个文件:
.listing
(这就是您要查找的内容)和index.html
(这是列表文件的 html 版本)。Just execute
This will generate two files:
.listing
(this is what you are looking for) andindex.html
which is the html version of the listing file.