これをシェルで使用できます:
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
であるため、インターネット全体をダウンロードします。 見つかったすべてのリンクをたどります。
これをシェルで使用できます:
wget -r -nH --cut-dirs=7 --reject="index.html*" \
http://abc.tamu.edu/projects/tzivi/repository/revisions/2/raw/tzivi/
パラメータは次のとおりです:
-r recursively download
-nH (--no-host-directories) cuts out hostname
--cut-dirs=X (cuts out X directories)