 |
|
Wie sichert man seinen Webspace?Anleitung zur Erstellung eines Backups
wget -m --user=xxxxx --password=yyyyyy ftp://ftp.your-domain.com/
-m Turn on options suitable for mirroring. This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory listings. It is currently equivalent to -r -N -l inf -nr.
-A acclist / -R rejlist Comma-separated list of extensions to accept/reject. For example, if you wish to download only GIFs and JPEGs, you will use -A gif,jpg,jpeg. If you wish to download everything except cumbersome MPEGs and .AU files, you will use -R mpg,mpeg,au.
Weitere Informationen erhalten Sie mit: http://www.google.at/search?q=man+wget http://www.google.at/search?q=wget+crontab |