Why doesn't wget -r get all FTP subdirectories?
How many level deep are you getting? If you need more than 5, you need to provide the -l
option.
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’.
The -m option of wget is the unlimited recursion
-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’.
Thanks for helping.