Unix

通過 Unix 終端使用 FTP 獲取所有文件

  • September 2, 2014

在 Unix 終端中使用 FTP 命令,我想從我的 FTP 伺服器下載所有文件/文件夾。

當我使用這個命令時:

ftp> mget *

我收到很多這些錯誤:

ftp: Unable to determine real path of `subdomains': No such file or directory
Skipping non-relative filename `subdomains/dev'

有誰知道我如何獲取所有文件並維護目錄結構而不會出現錯誤?

謝謝

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

引用自:https://serverfault.com/questions/102836