Ubuntu: Using curl to download an image

前端 未结 5 1783
隐瞒了意图╮
隐瞒了意图╮ 2021-01-31 01:17

I want to download an image accessible from this link: https://www.python.org/static/apple-touch-icon-144x144-precomposed.png into my local system. Now, I\'m aware

5条回答
  •  天命终不由人
    2021-01-31 01:52

    Create a new file called files.txt and paste the URLs one per line. Then run the following command.

    xargs -n 1 curl -O < files.txt
    

    source: https://www.abeautifulsite.net/downloading-a-list-of-urls-automatically

提交回复
热议问题