htaccessが設定されたサーバーがあります。そこからファイルをダウンロードしたいときは、次を実行するだけです:
wget -r --user="user" --password="password" -q 'http://server'
すべてのファイルがダウンロードされますが、各ディレクトリにwget
多くの追加ファイルも作成index.html?something
されるため、手動で削除する必要があります。そのファイルを作成しないことは可能ですか?
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.