Imaginez ça, j'ai download-list.txt
. Il contient des urls de fichiers :
http://example.com/a.txt
http://example.com/b.txt
http://example.com/c.txt
http://example.com/d.txt
http://example.com/e.txt
Quand je cours wget -i download-list.txt --spider
il montre comme :
http://example.com/a.txt
...
Length: 128 (128B) [text/txt]
...
http://example.com/b.txt
...
Length: 120 (120B) [text/txt]
...
http://example.com/c.txt
...
Length: 100 (100B) [text/txt]
...
http://example.com/d.txt
...
Length: 90 (90B) [text/txt]
...
http://example.com/e.txt
...
Length: 80 (80B) [text/txt]
...
Mais, je n'ai pas besoin de la taille des fichiers individuels, j'ai besoin de la taille totale des fichiers :
518 (128+120+100+90+80)
Comment obtenir ce résultat ? (Toute autre méthode sans wget
est également appréciée)