Baixar urls listados em um arquivo usando curl? [fechadas]

11

Eu tenho um arquivo com todos os URLs dos quais preciso fazer o download. No entanto, preciso limitar um download de cada vez. ou seja, o próximo download deve começar apenas quando o anterior estiver concluído. Isso é possível usando o curl? Ou devo usar qualquer outra coisa.

    
por Dev 20.09.2013 / 09:17

4 respostas

17

wget(1) funciona sequencialmente por padrão e tem essa opção incorporada:

   -i file
   --input-file=file
       Read URLs from a local or external file.  If - is specified as file, URLs are read from the standard input.  (Use ./- to read from a file literally named -.)

       If this function is used, no URLs need be present on the command line.  If there are URLs both on the command line and in an input file, those on the command lines will be the first ones to be retrieved.  If
       --force-html is not specified, then file should consist of a series of URLs, one per line.

       However, if you specify --force-html, the document will be regarded as html.  In that case you may have problems with relative links, which you can solve either by adding "<base href="url">" to the documents
       or by specifying --base=url on the command line.

       If the file is an external one, the document will be automatically treated as html if the Content-Type matches text/html.  Furthermore, the file's location will be implicitly used as base href if none was
       specified.
    
por 20.09.2013 / 10:40
13
xargs -n 1 curl -O < your_files.txt
    
por 17.09.2015 / 00:48
4

Isso é possível usando o curl dentro de um shell script, algo assim, mas você precisará pesquisar as opções apropriadas para curl etc para você

while read URL
    curl some options $URL
    if required check exit status 
          take appropriate action
done <fileontainingurls
    
por 20.09.2013 / 09:26
1

Baseado na resposta @iain, mas usando scripts de shell apropriados -

while read url; do
  echo "== $url =="
  curl -sL -O "$url"
done < list_of_urls.txt

Também funciona com caracteres estranhos, como "e" comercial, etc ...

Pode substituir o -O por um redirecionamento em um arquivo ou o que for adequado.

    
por 27.05.2018 / 16:08

Tags