yekai 发表于 2004-2-17 22:22:23

关于wget的两个问题

1.听说wget是支持断点续传的,我是这样用的:
wget -nc -r 地址+文件名,
断了之后,我还用这个命令,便不行了。说什莫目录存在了,不能建了。
反而用wget -c 没问题。

2.我想把文件放到指定目录,怎莫办?

atfa 发表于 2004-2-18 23:09:42

安装一个prozilla吧

proz默认4个断点续传

Hummer 发表于 2004-2-19 12:41:26

1.听说wget是支持断点续传的,我是这样用的:

         When running Wget without -N, -nc, or -r, downloading the same file
         in the same directory will result in the original copy of file
         being preserved and the second copy being named file.1.If that
         file is downloaded yet again, the third copy will be named file.2,
         and so on.When -nc is specified, this behavior is suppressed, and
         Wget will refuse to download newer copies of file.Therefore,
         ``"no-clobber"'' is actually a misnomer in this mode---it's not
         clobbering that's prevented (as the numeric suffixes were already
         preventing clobbering), but rather the multiple version saving
         that's prevented.


2.我想把文件放到指定目录,怎莫办?

wget -P 指定目录 -c 地址+文件名,
页: [1]
查看完整版本: 关于wget的两个问题