varios sitio para linea desde descargar descarga con completo comandos comando archivos archivo linux bash wget

sitio - Ocultar la salida wget en Linux



wget descargar sitio completo (1)

¿Por qué no usas -q ?

Del man wget :

-q --quiet Turn off Wget''s output.

Prueba

$ wget www.google.com --2015-05-08 14:07:42-- http://www.google.com/ Resolving www.google.com (www.google.com)... (...) HTTP request sent, awaiting response... 200 OK Length: unspecified [text/html] Saving to: ‘index.html’ [ <=> ] 17,913 --.-K/s in 0.01s 2015-05-08 14:07:42 (1.37 MB/s) - ‘index.html’ saved [17913]

Y:

$ wget -q www.google.com $

No quiero ver ningún mensaje cuando uso wget .

Intenté wget con las opciones -q -O y la redirección a /dev/null pero todavía veo mensajes no deseados.

EDITAR Lo siento todos, había otro wget en mi script que imprimía mensajes :) &> /dev/null fue suficiente para mí.