1. ホーム
  2. wget

[解決済み] wgetでダウンロード先を指定するには?

2022-03-18 14:10:19

質問

tmp/cron_test/にファイルをダウンロードする必要があります。私のwgetコードは

wget --random-wait -r -p -nd -e robots=off -A".pdf" -U mozilla http://math.stanford.edu/undergrad/

ということは、何かディレクトリを指定するパラメータがあるのでしょうか?

どのように解決するのですか?

マニュアルページより

-P prefix
--directory-prefix=prefix
           Set directory prefix to prefix.  The directory prefix is the
           directory where all other files and sub-directories will be
           saved to, i.e. the top of the retrieval tree.  The default
           is . (the current directory).

そのため -P /tmp/cron_test/ (短縮形) または --directory-prefix=/tmp/cron_test/ (長い形式)をコマンドに追加してください。また、ディレクトリが存在しない場合、作成されることに注意してください。