Como fazer o wget criar arquivos apropriados de zero bytes?

1

Estou tentando usar o wget para fazer download de diretórios inteiros com o conteúdo de um servidor da web. Alguns dos arquivos são de tamanho zero.

Existe uma maneira de fazer com que wget crie o arquivo de 0 bytes no cliente? Como estou tentando fazer agora, o wget pega 200 OK ... Content-Length: 0 do servidor, considera o arquivo já baixado e não faz nada.

$ wget -dS http://gateway/zero
Debugging support not compiled in. Ignoring --debug flag.
--2015-01-28 16:58:44--  http://gateway/zero
Resolving gateway... 172.16.19.2
Connecting to gateway|172.16.19.2|:80... connected.
HTTP request sent, awaiting response... 
  HTTP/1.1 200 OK
  Date: Wed, 28 Jan 2015 15:58:44 GMT
  Server: Apache/2.4.7 (Ubuntu)
  Last-Modified: Wed, 28 Jan 2015 15:58:34 GMT
  ETag: "0-50db87194310f"
  Accept-Ranges: bytes
  Content-Length: 0
  Keep-Alive: timeout=5, max=100
  Connection: Keep-Alive

    The file is already fully retrieved; nothing to do.
$ ls -l zero
ls: zero: No such file or directory
    
por myxal 28.01.2015 / 17:02

1 resposta

0

Você pode experimentar com a opção --no-cache de wget :

wget --no-cache -dS http://gateway/zero

Veja a página do manual de wget :

'--no-cache'

       Disable server-side cache. In this case, Wget will send the remote server
       an appropriate directive (‘Pragma: no-cache’) to get the file from the
       remote service, rather than returning the cached version. This is
       especially useful for retrieving and flushing out-of-date documents on
       proxy servers.

       Caching is allowed by default.
    
por 28.01.2015 / 22:17