wget.exe -O hello.html www.baidu.com
可以重命名文件为 hello.html
wget.exe -c www.baidu.com -P D:/folder/
可以下载到指定文件夹,不存在就创建
那么,这两个参数放一起该怎么用呢?
需要下载到指定文件夹,没有就创建,并重命名
wget.exe -P D:/folder/ -O hello.html www.baidu.com
不行,只会重命名,不能指定文件夹
wget.exe -O D:/folder/hello.html www.baidu.com
也不是我想要的,这个要先创建文件夹,不能自动创建
wget.exe -P D:/folder/ www.baidu.com -O D:/folder/hello.html
先创建,再重命名?好像也不行
所以,有没解答的大大?
搜索也没有答案...
还是无解?
1
id4alex 2019-10-29 13:27:21 +08:00
mkdir -p /folder && wget -O hello.html www.baidu.com
|
2
id4alex 2019-10-29 13:29:14 +08:00
搞错了
mkdir -p /folder && cd /folder && wget -O hello.html yourulr 不让我发 baidu 了... |
4
canbingzt 2019-10-29 13:54:50 +08:00
mkdir -p /path/to && wget -O /path/to/hello.html yoururl
|
5
Phant0m 2019-10-29 14:07:45 +08:00 via iPhone
下载最新的文件,如果本地已经有同名文件,用-N 参数
|
6
x66 2019-10-29 14:07:51 +08:00
wget --output-document="/home/my_new_file_name" http://someurl
|
9
TimePPT 2019-10-29 15:26:15 +08:00
你批量不如写 python 脚本……
|
10
omph 2019-10-29 15:41:54 +08:00
楼主想批量下载,但问题里没说啊,所以楼上的答案都能解决
问题的全貌是什么? |
12
youngxu 2019-10-29 16:38:36 +08:00 via Android
写个 sh 脚本比只用 wget 想容易多了
|
13
omph 2019-10-29 19:49:35 +08:00
没搞明白,为什么一定要用 wget 同时完成这两件事?楼上的答案哪里不行?
wget 可能根本完成不了 |
14
lcdtyph 2019-10-29 20:02:16 +08:00
mkdir -p 如果已有重名目录是不会报错的……这是-p 参数的效果之一
|
15
ccoming OP @omph 没有说一定要 wget 啦,一开始不知道 wget 处理不过来,只是以为代码没用对。
现在知道 wget 比较难实现,就换个方式处理咯。 @lcdtyph 请问这是哪里不对? https://imgchr.com/i/KhSbmd https://imgchr.com/i/Khpi0s |