Wget is silent, but it displays error messages

I want to download a file with Wget, but per the usual UNIX philosophy, I don't want it to output anything if the download succeeds. However, if the download fails, I want an error message.

The -q option suppresses all output, including error messages. If I include -nv option instead, Wget still prints (on stderr):

2012-05-03 16:17:05 URL:http://example.net/ [2966] -> "index.html" [1]

How can I remove even that output, but still get error messages?


Try curl instead:

curl -fsS $url -o $file

Long version:

curl --fail --silent --show-error $url --output $file

GNOME users may try Gvfs:

gvfs-cp $url $file

Lame hack if you can't get a better answer:

wget {url} 2>/tmp/err.log || cat /tmp/err.log; rm /tmp/err.log

(The 2> /tmp/err.log redirects stderr to a tmp file; if wget returns 0 [success], the || short circuits otherwise it will print out the error log values)


Since currently all wget output goes to stderr, it seems that to solve this 'the elegant way' you would have to patch the wget source.

wget source design dictate verbosity level difference between messages, rather than a simple split between error and not error message.

There is an open bug about this http://savannah.gnu.org/bugs/?33839, and there also some older discussion. Here is a suggested patch http://www.mail-archive.com/wget%40sunsite.dk/msg03289.html and here there is an answer from Hrvoje Niksic about this http://www.mail-archive.com/wget%40sunsite.dk/msg03330.html.

Other than that, there is of course the good solution you proposed in a comment to Foon's less elegant solution.