我需要将文件下载到/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/
(长格式)。另请注意,如果该目录不存在,它将被创建。关于wget - 如何用wget指定下载位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1078524/