1

htaccessが設定されたサーバーがあります。そこからファイルをダウンロードしたいときは、次を実行するだけです:

wget -r --user="user" --password="password" -q 'http://server'

すべてのファイルがダウンロードされますが、各ディレクトリにwget多くの追加ファイルも作成index.html?somethingされるため、手動で削除する必要があります。そのファイルを作成しないことは可能ですか?

4

1 に答える 1

1

See the --accept and --reject options, if your version of wget suppors them:

-A acclist --accept acclist
-R rejlist --reject rejlist

Specify comma-separated lists of file name suffixes or patterns to accept or reject. Note that if any of the wildcard characters, *, ?, [ or ], appear in an element of acclist or rejlist, it will be treated as a pattern, rather than a suffix.

于 2013-01-25T10:16:51.587 に答える