up vote 6 down vote favorite
share [g+] share [fb]

I want to download a lot of urls in a script but I do not want to save the ones that lead to HTTP errors.

as far as I read in the man they both don't provide such functionality. does anyone know about another downloader who does?

link|improve this question

57% accept rate
feedback

7 Answers

up vote 1 down vote accepted

I voted up the curl -f answer above, but to expound that it isn't failsafe. I think this is a perfect opportunity for learning Perl or Ruby (or extending your skills) by writing your own download program.

link|improve this answer
feedback

To do this with wget:

on unix you can do:

wget -O /dev/null example.com

while on windows the equivalent is:

wget -O NUL example.com
link|improve this answer
feedback

I think the -f option to curl does what you want.

link|improve this answer
no, it's only related to verbosity of errors. once used, errors do are not reported (but saved as usual) thanks anyway – kiwi Sep 18 '08 at 4:29
feedback

I'm convinced to write my own script

link|improve this answer
feedback

One liner I just setup for this very purpose:

(works only with a single file, might be useful for others)

A=$$; ( wget -q "http://foo.com/pipo.txt" -O $A.d && mv $A.d pipo.txt ) || (rm $A.d; echo "Removing temp file")

This will attempt to download the file from the remote Host. If there is no Error, the file is not kept. In all other cases, it's kept and renamed.

link|improve this answer
feedback

You can download the file without saving using "-O -" option as

wget -O - http://jagor.srce.hr/

You can get mor information at http://www.gnu.org/software/wget/manual/wget.html#Advanced-Usage

link|improve this answer
feedback

If you're still looking after awhile, hacking up such a downloader in your language of choice shouldn't be too difficult.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.