Puoi usare questo nella shell:
wget -r --no-parent http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
I parametri sono:
-r //recursive Download
e
--no-parent // Don´t download something from the parent directory
Se non desideri scaricare l'intero contenuto, puoi utilizzare:
-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')
E così via. Se non inserisci -l
opzione, wget
userà -l 5
automaticamente.
Se inserisci un -l 0
scaricherai l'intera Internet, perché wget
seguirà ogni collegamento che trova.
Puoi usarlo in una shell:
wget -r -nH --cut-dirs=7 --reject="index.html*" \
http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
I parametri sono:
-r recursively download
-nH (--no-host-directories) cuts out hostname
--cut-dirs=X (cuts out X directories)