您可以在shell中使用它:
wget -r --no-parent http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
参数为:
-r //recursive Download
和
--no-parent // Don´t download something from the parent directory
如果您不想下载全部内容,则可以使用:
-l1 just download the directory (tzivi in your case)-l2 download the directory and all level 1 subfolders ('tzivi/something' but not 'tivizi/somthing/foo')等等。如果不插入任何
-l选项,
wget将
-l 5自动使用。
如果插入一个
-l 0,
wget则将下载整个Internet,因为它将跟随它找到的每个链接。



