Verktyget "wget" redan gör vad du vill göra. Check it out använda-N alternativ. Om kopian du är äldre än den tidsstämpeln Webbservern ger för den angivna webbadressen, en ny kopia hämtas. Om filstorlekar inte matchar en ny kopia hämtas.
Om du inte vill att det ska faktiskt ladda ner, men se vad man skulle göra, kan du använda - spindel. Därefter rapporter vad det skulle ha gjort:
Kod:
$ wget -N -v http://www.keepalived.org/documentation.html
--16:35:14-- http://www.keepalived.org/documentation.html
Resolving www.keepalived.org... 213.228.1.83
Connecting to www.keepalived.org|213.228.1.83|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5035 (4.9K) [text/html]
The sizes do not match (local 0) -- retrieving.
--16:35:15-- http://www.keepalived.org/documentation.html
Reusing existing connection to www.keepalived.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 5035 (4.9K) [text/html]
Saving to: `documentation.html'
100%[=======================================>] 5,035 --.-K/s in 0.07s
16:35:15 (68.6 KB/s) - `documentation.html' saved [5035/5035]
[otheus] ~$ touch documentation.html
[otheus] ~$ wget -N -v http://www.keepalived.org/documentation.html
--16:36:08-- http://www.keepalived.org/documentation.html
Resolving www.keepalived.org... 213.228.1.83
Connecting to www.keepalived.org|213.228.1.83|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5035 (4.9K) [text/html]
Server file no newer than local file `documentation.html' -- not retrieving.
[otheus] ~$ echo test >> documentation.html
Change the file size of documentation.html
[otheus] ~$ wget --spider -N -v http://www.keepalived.org/documentation.html
--16:36:27-- http://www.keepalived.org/documentation.html
Resolving www.keepalived.org... 213.228.1.83
Connecting to www.keepalived.org|213.228.1.83|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 5035 (4.9K) [text/html]
The sizes do not match (local 0) -- retrieving.
--16:36:27-- http://www.keepalived.org/documentation.html
Reusing existing connection to www.keepalived.org:80.
HTTP request sent, awaiting response... 200 OK
Length: 5035 (4.9K) [text/html]
200 OK