Code: Select all
wget -r -np -l 2 <index_page_address>
Code: Select all
-r
--recursive
Turn on recursive retrieving.
Code: Select all
-np
--no-parent
Do not ever ascend to the parent directory when retrieving
recursively. This is a useful option, since it guarantees that
only the files below a certain hierarchy will be downloaded.
Code: Select all
-l depth
--level=depth
Specify recursion maximum depth level depth. The default maximum
depth is 5.