wget problema de backup rotacionado

0

Estou chamando wget 1.11.4 da seguinte forma

$ wget -nd -S -N --backups=4 -r --no-parent --reject="index.html*" -e robots=off <url>

para baixar repetidamente todos os arquivos de um servidor. Meu problema é que os arquivos existentes não receberão um backup finalizado. Ou apenas até 1 arquivo. Então, no final, existem apenas 2 arquivos, myfile e myfile.1 . Nunca há um myfile.2 .

Por que isso? Eu disse especificamente ao wget para fazer 4 arquivos de backup.

    
por duedl0r 04.08.2014 / 06:52

1 resposta

1

Está funcionando para mim. --backups é uma nova opção, por exemplo minhas máquinas RHEL6.5 não possuem (wget 1.12), e minha máquina local do Fedora tem (wget 1.14).

Você já tentou um teste simples sem as outras opções? Isso é o que funciona para mim:

>mkdir test; cd test

>wget -q --backups=4 http://ddg.gg/
>ls
index.html

>wget -q --backups=4 http://ddg.gg/
>ls
index.html  index.html.1

>wget -q --backups=4 http://ddg.gg/
>ls
index.html  index.html.1  index.html.2

>wget -q --backups=4 http://ddg.gg/
>ls
index.html  index.html.1  index.html.2  index.html.3

>wget -q --backups=4 http://ddg.gg/
>ls
index.html  index.html.1  index.html.2  index.html.3  index.html.4

>wget -q --backups=4 http://ddg.gg/
>ls
index.html  index.html.1  index.html.2  index.html.3  index.html.4
    
por 05.08.2014 / 15:25

Tags