web-dev-qa-db-ja.com

ページがダウンロードを待機させるwgetでファイルをダウンロードする方法

Wgetを使用してsourceforgeからファイルをダウンロードしようとしていますが、誰もが知っているように、ダウンロードボタンをクリックして、ファイルが自動ダウンロードされるのを待つ必要があります。 wgetを使用してこのタイプのファイルをどのようにダウンロードしますか?

これをダウンロードしようとしています: http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.1/bitcoin-0.8.1-linux.tar.gz/download

しかし、そのURLリンクでwgetを実行しても、ファイルはブラウザーを介して自動ロードされるため、ファイルは取得されません。

38

どのバージョンのwgetまたはOSとプロキシがユーザーとsourceforgeの間に存在するかわかりませんが、「/ download」を削除してwgetがファイルをダウンロードし、ファイル拡張子に残しました。

セッション全体またはPastebin全体をフラッディングしたくないのですが、転送が始まる前に302と200のステータスコードを受け取りました。 wgetを試すとどうなりますか?

Resolving downloads.sourceforge.net... 216.34.181.59
Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected.
HTTP request sent, awaiting response... 302 Found

[snipped for brevity]

HTTP request sent, awaiting response... 200 OK
Length: 13432789 (13M) [application/x-gzip]
Saving to: `download'
6
Karen3819x4

curlの代わりにwgetを使用してこれを行うことをお勧めします。スイッチを使用してリダイレクトを追跡できます-L-J-O

curl -O -J -L http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.8.1/bitcoin-0.8.1-linux.tar.gz/download

スイッチ定義

-O/--remote-name
  Write output to a local file named like the remote file we get. 
  (Only the file part of the remote  file  is  used, the path is cut off.)

-L/--location
  (HTTP/HTTPS)  If  the  server  reports that the requested page has moved 
  to a different location (indicated with a Location: header and a 3XX 
  response code), this option will make curl redo the request on the new 
  place.  If  used together  with  -i/--include  or -I/--head, headers from 
  all requested pages will be shown. When authentication is used, curl only 
  sends its credentials to the initial Host. If a redirect takes curl to a 
  different Host, it  won't be  able  to  intercept  the  user+password. 
  See also --location-trusted on how to change this. You can limit the
  amount of redirects to follow by using the --max-redirs option.

-J/--remote-header-name
  (HTTP) This option tells the -O/--remote-name option to  use  the  
  server-specified  Content-Disposition  filename instead of extracting a 
  filename from the URL.

詳細は curl man page を参照してください。

53
slm

wgetでは、--content-dispositionオプションを使用できます。これは、「Content-Disposition」ヘッダーを使用してダウンロードしたファイルの名前を説明するファイルダウンロードCGIプログラムに役立ちます。

例では:

wget --user-agent=Mozilla --content-disposition -E -c http://example.com/

より複雑なソリューション(認証が必要など)の場合、Cookieファイル(--load-cookies file)を使用してセッションをシミュレートします。

16
kenorb