Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个想要下载到我的电脑的 SWF 文件列表。有没有一种快速的方法可以从我的服务器上执行此操作,例如使用 WGET 或类似的东西。每个文件行列表都是一个新行:
http://super.xx-cdn.com/730_silvxxxen/v/v.swf http://super.xx-cdn.com/730_sixxxxheen/73xxxxversheen.swf http://super.xx-cdn.com/730_rxxxd/v/v.swf
有数千行。
如果您使用 ssh over putty 访问您的服务器,您可以轻松地winscp从 putty使用
winscp
否则你也可以使用pscp
pscp
如果您没有安装腻子,请获取它并为您的服务器组成一个 ssh
下载它们的另一种简单方法是获取FTP client并通过 FTP 下载它们
FTP client
如果我正确理解您的问题,您可以使用简单的 SH 脚本:
#!/bin/sh while IFS= read -r line do wget $line done < "urls.txt"