2007年5月16日星期三

多线程下载工具myget

MyGet:
MyGet目标设计成一个可扩展的,拥有丰富界面的多线程下载工具,它支持HTTP、FTP、HTTPS等协议。
下载地址为:http://myget.sourceforge.net/release/myget-0.1.0.tar.bz2
它是一个控制台的程序,也就是没有界面的,但当你用多了Linux的时候,你会发现命令行才是最强大的,一个界面,几个命令就可以完成很多东西,而这种事,在Windows里要开几个程序,要无数次的点击,东点一下,西点一下,烦死了。
废话少说,安装也很简单:
#./configure --prefix=/usr
#make
#make install
安装好后,看一下用法,很奇怪,不知道myget的程序 为什么会是mytget?
[root@localhost win32]# mytget -h
Mytget 0.0.99: A download accelerator for GNU/Linux
Usage: mytget [options]... [URL]...
Options:
-b, --debug Show the debug message
-c, --count=num Set the retry count to [num], no limit when "0", the default is "99"
-d, --directory=dir Set the local direcotry to [dir], the default is "."
-f, --file=file Rename the file to [file]
-h, --help A brief summary of all the options
-i, --interval=num Set the ftp retry interval to [num] seconds, the default is "5"
-n, --number=num Use [num] connections instead of the default (4)
-r, --referer=URL Include `Referer: [URL]' header in HTTP request.
-t, --timeout=num Set the connection timeout to [num] seconds, the default is "30"
-v, --version Show the version of the myget and exit
-x, --proxy=URL Set the proxy [URL]
用法也很简单:-x 设置代理,-n设置线程。

没有评论: