Ben Everard Asked: 2010-01-15 13:30:17 +0800 CST2010-01-15 13:30:17 +0800 CST 2010-01-15 13:30:17 +0800 CST 通过 Unix 终端使用 FTP 获取所有文件 772 在 Unix 终端中使用 FTP 命令,我想从我的 FTP 服务器下载所有文件/文件夹。 当我使用这个命令时: ftp> mget * 我收到很多这些错误: ftp: Unable to determine real path of `subdomains': No such file or directory Skipping non-relative filename `subdomains/dev' 有谁知道我如何获取所有文件并维护目录结构而不会出现错误? 谢谢 ftp unix terminal mget 1 个回答 Voted Best Answer Michael Graff 2010-01-15T13:47:34+08:002010-01-15T13:47:34+08:00 wget 也可以镜像 ftp 站点。这是一个关于如何镜像Project Gutenberg Europe的示例。 wget --mirror --no-host-directories --passive-ftp --no-parent --cut-dirs=4 \ --output-file=/tmp/wget-gutenberg.log ftp://ftp.ibiblio.org/pub/docs/books/gutenberg
wget 也可以镜像 ftp 站点。这是一个关于如何镜像Project Gutenberg Europe的示例。