wget只下載中間一段的問題 - Linux

Table of Contents



頁面中有5百多個檔案連結,我想從第一百五十個開始下載

爬過前文所以試過wget URL/files/DT0{150..550}__.BHZ

結果下載的是DT0{150..550}__.BHZ 只有1K

試過做bat

for /L %%p in (150,1,550) do wget URL/files/DT0%%p__.BHZ

請問底線會有影響嗎?

請問有何方法解決

有勞各位

--

All Comments

Eden avatarEden2009-10-27
用curl?