web-dev-qa-db-ja.com

wgetの使用中に特定のディレクトリを除外する方法は?

いくつかのソースコードを含むFTPからディレクトリをダウンロードしたいのですが。最初は、これを行いました:

wget -r ftp://path/to/src

残念ながら、ディレクトリ自体はSVNチェックアウトの結果です。そのため、.svnディレクトリがたくさんあり、それらをクロールするのに時間がかかります。それらの.svnディレクトリを除外することは可能ですか?

12
anta40
wget -X directory_to_exclude[,other_directory_to_exclude] -r ftp://URL_ftp_server

SERVER
    |-logs
    |-etc
    |-cache
    |-public_html
      |-images
      |-videos ( want to exclude )
      |-files
      |-audio  (want to exclude)

wget -X /public_html/videos,/public_html/audio ftp:SERVER/public_html/*
18
josejavierfm
wget --exclude-directories=.svn -r ftp://path/to/src
5
quanta