GNU/Linux >> Linux の 問題 >  >> Linux

wgetを使用してディレクトリ全体とサブディレクトリをダウンロードする方法は?

これをシェルで使用できます:

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)

Linux
  1. シェル文字と変数を使用して作業ディレクトリを識別する方法

  2. ディレクトリとサブディレクトリ内のファイル数を見つける方法

  3. LinuxでsFTPを使用してファイル/ディレクトリをアップロードまたはダウンロードする方法

  1. Wgetを使用してWebディレクトリからファイルを再帰的にダウンロードするにはどうすればよいですか?

  2. Rsyncを使用してファイルを送信およびダウンロードする方法

  3. wget vs curl:wget と curl を使用してファイルをダウンロードする方法

  1. 特定のディレクトリ内のファイルとサブディレクトリの数をカウントする方法

  2. ディレクトリとそのすべてのサブディレクトリ内の文字列を grep する方法は?

  3. wgetコマンドを使用してドロップボックスファイルをダウンロードするには?