Puede usar esto en shell:
wget -r --no-parent http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
Los parámetros son:
-r //recursive Download
y
--no-parent // Don´t download something from the parent directory
Si no desea descargar todo el contenido, puede utilizar:
-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')
Y así. Si no inserta -l
opción, wget
utilizará -l 5
automáticamente.
Si inserta un -l 0
descargarás todo Internet, porque wget
seguirá todos los enlaces que encuentre.
Puedes usar esto en un shell:
wget -r -nH --cut-dirs=7 --reject="index.html*" \
http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
Los parámetros son:
-r recursively download
-nH (--no-host-directories) cuts out hostname
--cut-dirs=X (cuts out X directories)