How do I make wget properly quiet?

izb picture izb · Sep 22, 2009 · Viewed 22.4k times · Source

wget always echoes system values to the console, even when I specify -q (quiet) on the command line, e.g.:

C:\> wget -q http://www.google.com/
SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
syswgetrc = C:\Program Files\GnuWin32/etc/wgetrc

C:\>

How do I make the noise stop?

Answer

akira picture akira · Sep 22, 2009

that should work:

%> wget.exe parameters_here  1> NUL 2> NUL