|
发表于 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 地址+文件名, |
|