web-dev-qa-db-ja.com

wget -rがすべてのFTPサブディレクトリを取得しないのはなぜですか?

私がコマンドを実行したとき:

 wget -r ftp://user:[email protected]/

サブサブディレクトリがありません。再帰FTPには制限がありますか?

5
dubis

何レベル深くなっていますか? 5つ以上必要な場合は、-lオプションを指定する必要があります。

man wget

-r
--recursive
    Turn on recursive retrieving.    The default maximum depth is 5.

-l depth
--level=depth
    Specify recursion maximum depth level depth.
-m
--mirror 
Turn on options suitable for mirroring. 
This option turns on recursion and time-stamping, 
sets infinite recursion depth and keeps FTP directory listings. 
It is currently equivalent to ‘-r -N -l inf --no-remove-listing’.
7
Mikel

Wgetの-mオプションは無制限の再帰です

-m
--mirror 
Turn on options suitable for mirroring. 
   This option turns on recursion and time-stamping, 
   sets infinite recursion depth and keeps FTP directory listings. 
   It is currently equivalent to ‘-r -N -l inf --no-remove-listing’.

助けてくれてありがとう。

6
dubis