-1

I want to download this webpage located deep: example.com/a/b/c/d The problem that I am having is that wget --recursive --page-requisites example.com/a/b/c/d does not download the css or js files. It only downloads a single html file.

1 Answers1

0

Per this page:

Downloading an Entire Web Site with wget

 wget \
     --recursive \
     --no-clobber \
     --page-requisites \
     --html-extension \
     --convert-links \
     --restrict-file-names=windows \
     --domains website.org \
     --no-parent \
         www.website.org/tutorials/html/
Joshua Besneatte
  • 4,773
  • 5
  • 23
  • 42