wget metalink: загружено всего несколько файлов - PullRequest
0 голосов
/ 02 февраля 2020

Я пытался загрузить файлы с этого металинка:

<?xml version="1.0"?>
<metalink xmlns="http://www.metalinker.org/" version="3.0">
    <publisher><name>Alaska Satellite Facility</name><url>http://www.asf.alaska.edu/</url></publisher>
    <files>
        <file name="AP_25667_FBD_F0270_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_25667_FBD_F0270_RT1.zip</url></resources><verification><hash type="md5">2446b269600fc18f7c0446cfb2ee197a</hash></verification><size>333694392.0</size></file>
        <file name="AP_25667_FBD_F0260_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_25667_FBD_F0260_RT1.zip</url></resources><verification><hash type="md5">ed79a1e210e0dcc1efa3cbe09dbb4a5f</hash></verification><size>331975421.0</size></file>
        <file name="AP_25667_FBD_F0250_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_25667_FBD_F0250_RT1.zip</url></resources><verification><hash type="md5">89d867f804e821d6a2a1eb3121d347c9</hash></verification><size>331347671.0</size></file>
        <file name="AP_24996_FBD_F0270_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24996_FBD_F0270_RT1.zip</url></resources><verification><hash type="md5">25231c46810e09290127fc4fa34f73fc</hash></verification><size>333697503.0</size></file>
        <file name="AP_24996_FBD_F0260_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24996_FBD_F0260_RT1.zip</url></resources><verification><hash type="md5">8692d72be24355b691b3670bd7902b0d</hash></verification><size>332058506.0</size></file>
        <file name="AP_24996_FBD_F0250_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24996_FBD_F0250_RT1.zip</url></resources><verification><hash type="md5">00144a636e69d22d951953286318e463</hash></verification><size>331446649.0</size></file>
        <file name="AP_24748_FBD_F0270_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24748_FBD_F0270_RT1.zip</url></resources><verification><hash type="md5">f4fed13d3c47f6277820a491e9df9880</hash></verification><size>334541780.0</size></file>
        <file name="AP_24748_FBD_F0260_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24748_FBD_F0260_RT1.zip</url></resources><verification><hash type="md5">2ba08d10eac58785d4f06964c263b483</hash></verification><size>331244121.0</size></file>
        <file name="AP_24325_FBD_F0270_RT1.zip"><resources><url type="http">https://datapool.asf.alaska.edu/RTC_HI_RES/A3/AP_24325_FBD_F0270_RT1.zip</url></resources><verification><hash type="md5">888ff239c9a92b4ee85e2400dd41b51d</hash></verification><size>333663192.0</size></file>
    </files>
</metalink>

с помощью команды: wget -r -H -nc -np -nH --cut-dirs=1 -e robots=off -l1 --input-metalink=asf-datapool-results-2020-02-01_04-20-57.metalink --user=USER --password=PASs -t inf

Но загрузка работала только для первых трех файлов и остановилась без какого-либо окончательного сообщения об ошибке или предупреждение.

Есть что-то, что я сделал не так?

...