tags:

views:

541

answers:

2

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?

+4  A: 

try adding a >NUL

wget -q http://www.google.com/ >NUL

Heiko Hatzfeld
+2  A: 

that should work:

%> wget.exe parameters_here  1> NUL 2> NUL
akira
2> NULPerfect, thanks :)
izb