Ubuntu: Using curl to download an image

前端 未结 5 1695
隐瞒了意图╮
隐瞒了意图╮ 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 02:06

    For those who don't have nor want to install wget, curl -O (capital "o", not a zero) will do the same thing as wget. E.g. my old netbook doesn't have wget, and is a 2.68 MB install that I don't need.

    curl -O https://www.python.org/static/apple-touch-icon-144x144-precomposed.png
    

提交回复
热议问题