web-dev-qa-db-ja.com

URLリダイレクトを使用してファイルをダウンロードする

URLでファイルをダウンロードできますが、bashからダウンロードすると、ファイルではなくHTMLページが表示されます。

Curl、wget、またはその他のものを使用して、URLリダイレクト(301 Moved Permanently)でファイルをダウンロードする方法

[〜#〜]更新[〜#〜]

URLリクエストのヘッダー。

curl -I http://www.somesite.com/data/file/file.rar

HTTP/1.1 301 Moved Permanently
Date: Sat, 07 Dec 2013 10:15:28 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3
Location: http://www.somesite.com/files/html/archive.html
Vary: Accept-Encoding
Content-Type: text/html
X-Pad: avoid browser bug
19
edem

使用する -L, --locationリダイレクトを追跡するには:

$ curl -L http://httpbin.org/redirect/1
25
deltheil