Curl

使用 curl 從沒有文件副檔名的 url 下載圖像

  • April 3, 2018

我想下載圖片

https://lorempixel.com/1280/320/nature/1/

curl.

curl https://www.python.org/static/apple-touch-icon-144x144-precomposed.png > image.png 工作 正常!(來自https://stackoverflow.com/questions/32330737/ubuntu-using-curl-to-download-an-image

問題https://lorempixel.com/1280/320/nature/1/在於它沒有文件副檔名,例如.jpg.png.

嘗試

  1. curl https://lorempixel.com/1280/320/nature/1 > test.jpg

測試.jpg 2. curl -O https://lorempixel.com/1280/320/nature/1/

…遠端文件名沒有長度!…

  1. curl -O https://lorempixel.com/1280/320/nature/1/ > test.jpg

…遠端文件名沒有長度!…

和嘗試curl -Ov(詳細)和其他沒有成功的嘗試。

有可能curl嗎?

$ curl -o x.jpg  https://lorempixel.com/1280/320/nature/1/ 
$ file x.jpg
x.jpg: JPEG image data, JFIF standard 1.01, resolution (DPI), density 96x96, segment length 16, comment: "CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), quality = 70", baseline, precision 8, 1280x320, frames 3

引用自:https://unix.stackexchange.com/questions/435376