我正在尝试使用来下载项目的文件,因为该项目wget的SVN服务器不再运行,并且只能通过浏览器访问文件。所有文件的基本URL都一样
wget
http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/ *
如何使用wget(或任何其他类似工具)下载此存储库中的所有文件,其中“ tzivi”文件夹是根文件夹,并且在其下有几个文件和子文件夹(最多2或3个级别)?
您可以在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
-l 5
如果插入一个-l 0,wget则将下载整个Internet,因为它将跟随它找到的每个链接。
-l 0