wget 재귀적으로 인덱스 파일만 다운로드

wget 재귀적으로 인덱스 파일만 다운로드

나는 제공된 답변 중 하나를 따랐습니다.이 게시물에서블로그 게시물을 다운로드하는 데만 있고 외부 링크는 없지만 인덱스 파일만 다운로드되기 때문에 재귀 기능은 작동하지 않는 것 같습니다. 어떤 제안이 있으십니까?

$ wget      --recursive   --page-requisites      --html-extension      --convert-links      --restrict-file-names=windows      --domains https://bestblog.wordpress.com/  https://bestblog.wordpress.com/
--2018-07-21 10:26:35--  https://bestblog.wordpress.com/
Resolving bestblog.wordpress.com (bestblog.wordpress.com)... 192.0.78.13, 192.0.78.12
Connecting to bestblog.wordpress.com (bestblog.wordpress.com)|192.0.78.13|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘bestblog.wordpress.com/index.html’

bestblog.wordpress.     [ <=>                ]  65.36K  --.-KB/s    in 0.09s   

2018-07-21 10:26:36 (729 KB/s) - ‘bestblog.wordpress.com/index.html’ saved [66929]

FINISHED --2018-07-21 10:26:36--
Total wall clock time: 0.4s
Downloaded: 1 files, 65K in 0.09s (729 KB/s)
Converting links in bestblog.wordpress.com/index.html... 6-25
Converted links in 1 files in 0.002 seconds.

답변1

--domains구성표 없이 플래그를 지정해야 합니다 .

--domains bestblog.wordpress.com

관련 정보