wget - サブディレクトリをダウンロードする 質問する

wget - サブディレクトリをダウンロードする 質問する

wget を使用してサブディレクトリのみをダウンロードするにはどうすればよいですか? ダウンロードする必要があるサブディレクトリを指定できますか?

ありがとう!

ベストアンサー1

できるよ:

wget -r -l1 --no-parent http://www.domain.com/subdirectory/

どこ:

-r: recursive retrieving
-l1: sets the maximum recursion depth to be 1
--no-parent: does not ascend to the parent; only downloads from the specified subdirectory and downwards hierarchy

おすすめ記事