wget
するディレクトリを指定するにはどうすればよいですか すべてのファイルをにダウンロードする必要がありますか?現在スクリプトを実行していることを理解するには:
wget -r --no-parent --reject "index.html*" http://water.weather.gov/precip/p_download_new/2010/01/01/
問題は、ファイルがwater.weather.gov/precip/p_download_new/2010/01/01/
に保存されていることです。 、すべてのファイルを2010/01/01
だけに保存したい 、どうすればこれを指定できますか?
承認された回答:
あなたはそれを好きに使うことができます
wget -r --no-parent -P /path-to-"2010/01/01"-directory -nd --reject "index.html*" http://water.weather.gov/precip/p_download_new/2010/01/01/