Webにフォルダービューのあるフォルダーがあります(http://example.com/folder1/folder2/)
/ folder2には、pdfファイルが含まれる複数のフォルダーがあります。wgetを使用して、すべてのサブフォルダーとファイルを含む/ folder2のすべてのコンテンツをssh経由でサーバーにダウンロードしたい。次のことを試しましたが、index.htmlとrobots.txtファイルのみを取得し続けています。
[root@myserver downloads]# wget -r --no-parent --reject "index.html*" http://www.example.com/folder1/folder2/
--2015-08-07 07:46:36-- http://www.example.com/folder1/folder2/
Resolving www.example.com... 192.168.1.1
Connecting to www.example.com|192.168.1.1|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `www.example.com/folder1/folder2/index.html'
[ <=> ] 4,874,325 138K/s in 37s
2015-08-07 07:47:42 (128 KB/s) - `www.example.com/folder1/folder2/index.html' saved [4874325]
Loading robots.txt; please ignore errors.
--2015-08-07 07:47:42-- http://www.example.com/robots.txt
Connecting to www.example.com|192.168.1.1|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 26 [text/plain]
Saving to: `www.example.com/robots.txt'
100%[======================================>] 26 --.-K/s in 0s
2015-08-07 07:47:42 (1.42 MB/s) - `www.example.com/robots.txt' saved [26/26]
Removing www.example.com/folder1/folder2/index.html since it should be rejected.
FINISHED --2015-08-07 07:47:42--
Downloaded: 2 files, 4.6M in 37s (128 KB/s)
[root@myserver downloads]#
同様の失敗した結果で私が試した他のコマンド:
wget -m -p -E -k -K -np http://example.com/folder1/folder2/
wget -r http://example.com/folder1/folder2/ -nd -P /downloads -A PDF
最初に、正しいexample.comをダウンロードした場合.... example.comにはインデックスとロボット以外のコンテンツはありません
—
-Schwertspize
第二に、example.comをダウンロードしなかったのに、なぜそんなに変更するのですか
—
-Schwertspize
index.htmlファイルとrobots.txtファイル以外はダウンロードできないようです。/ folder2にはフォルダーとファイルがあります。実際にファイルをダウンロードするためにexample.comにアクセスする人がいないように、すべてを変更しました。
—
imbayago
-rおよび--no-parentが私のために働いたので、私は本当にあなたを助けることはできません
—
。...-Schwertspize