Anwendungs-Software und Apps 14.414 Themen, 72.568 Beiträge

WGET Befehlszeilenparameterfrage

Mario32 / 5 Antworten / Flachansicht Nickles

Hi

Bei wget ist es ja möglich durch Verwendung des timestamp parameters das herunterladen eines Serverfiles davon abhägig zu machen ob das File auf dem Remoteserver neuer ist als die lokale Version.

Ich möchte diese Funktion nutzen um ein sich regelmäßig aktualisierendes jpeg-bild einer Webcam von einem Server zu ziehen bei dem der Name der Datei immer gleich bleibt i. S. v. www.servername.de/bild.jpg

wget lädt mit -N die Bilddatei auch wirklich nur erneut wenn der Server das Bild aktualisiert hat. :-)
Aber es überschreibt dabei natürlich die schon lokal verhandene ältere Datei :-( Das genau soll es aber nicht.
Ich habe in der Hilfe nichts dazu gelesen wie ich das verhindern kann ;
sprich
ist es möglich wget zu sagen es soll an den zu speichernden lokalen jpeg namen beispielsweise eine fortlaufende Nummer oder besser noch die Serverzeit des Originals anhängen?
Wenn ja, wie lautet der Parameter und wie müßte dann eine entsprechende batchzeile/datei in "DOSbox" aussehen um den server automatisch wiederkehrend auf aktualisierte Version zu checken?

bei Antwort benachrichtigen
twmike Mario32 „WGET Befehlszeilenparameterfrage“
Optionen

hallo,
auszug aus »man wget«

Download Options


--bind-address=ADDRESS
When making client TCP/IP connections, "bind()" to ADDRESS on the
local machine. ADDRESS may be specified as a hostname or IP
address. This option can be useful if your machine is bound to
multiple IPs.

-t number
--tries=number
Set number of retries to number. Specify 0 or inf for infinite
retrying. The default is to retry 20 times, with the exception of
fatal errors like ``connection refused'' or ``not found'' (404),
which are not retried.

-O file
--output-document=file
The documents will not be written to the appropriate files, but all
will be concatenated together and written to file. If file already
exists, it will be overwritten. If the file is -, the documents
will be written to standard output. Including this option automat-
ically sets the number of tries to 1. Note that when --output-docu-
ment is specified, --convert-links is ignored.

-nc
--no-clobber
If a file is downloaded more than once in the same directory,
Wget's behavior depends on a few options, including -nc. In cer-
tain cases, the local file will be clobbered, or overwritten, upon
repeated download. In other cases it will be preserved.

When running Wget without -N, -nc, or -r, downloading the same file
in the same directory will result in the original copy of file
being preserved and the second copy being named file.1. If that
file is downloaded yet again, the third copy will be named file.2,
and so on. When -nc is specified, this behavior is suppressed, and
Wget will refuse to download newer copies of file. Therefore,
``"no-clobber"'' is actually a misnomer in this mode---it's not
clobbering that's prevented (as the numeric suffixes were already
preventing clobbering), but rather the multiple version saving
that's prevented.

When running Wget with -r, but without -N or -nc, re-downloading a
file will result in the new copy simply overwriting the old.
Adding -nc will prevent this behavior, instead causing the original
version to be preserved and any newer copies on the server to be
ignored.

When running Wget with -N, with or without -r, the decision as to
whether or not to download a newer copy of a file depends on the
local and remote timestamp and size of the file. -nc may not be
specified at the same time as -N.
----------------------------------------------
mfg
twmike

bei Antwort benachrichtigen