Estou executando o comando
curl -O "http://www.*site*.com/[1-9].png"
mas o download está falhando.
- a saída é a seguinte
[1/10]: http://www.*site*.com/1http://w --> 1.png
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 531 0 531 0 0 1618 0 --:--:-- --:--:-- --:--:-- 1618
e o arquivo 1.png tem o seguinte html:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body><script type="text/javascript">//<![CDATA[try{(function(a){var b="http://",c="www.*site*.com",d="/cdn-cgi/cl/",e="img.gif",f=new a;f.src=[b,c,d,e].join("")})(Image)}catch(e){}//]]></script>
<h1>Not Found</h1>
<p>The requested URL /1http://w was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
parece que está repetindo o endereço no final da solicitação, não sabendo por que
Executando o comando para cada arquivo, um de cada vez funciona
curl -O "http://www.*site*.com/1.png"
note que também tentei
curl "http://www.*site*.com/[1-9].png" -o "#1.ext"
então não é a opção -O.