web-dev-qa-db-fra.com

Télécharger les URL répertoriées dans un fichier en utilisant curl?

J'ai un fichier qui contient toutes les URL à partir desquelles je dois télécharger. Cependant, je dois limiter un téléchargement à la fois. c'est-à-dire que le téléchargement suivant ne devrait commencer qu'une fois le précédent terminé. Est-ce possible en utilisant curl? Ou devrais-je utiliser autre chose.

16
Dev

wget(1) fonctionne séquentiellement par défaut, et a cette option intégrée:

   -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.
21
dawud
xargs -n 1 curl -O < your_files.txt
20
Grumdrig

Ceci est possible en utilisant curl dans un script Shell, quelque chose comme ça, mais vous devrez rechercher par vous-même les options appropriées pour curl, etc.

while read URL
    curl some options $URL
    if required check exit status 
          take appropriate action
done <fileontainingurls
4
user9517

Basé sur la réponse @iain, mais en utilisant un script Shell approprié -

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

Fonctionne également avec des personnages étranges comme les esperluettes, etc.

Peut remplacer le -O avec une redirection vers un fichier à la place, ou tout ce qui convient.

2
Evgeny