Try the following
wget -q -S -O - www.google.com 2>&1
Note the trailing -
. This is part of the normal command argument for -O
to cat out to a file, but since we don’t use >
to direct to a file, it goes out to the shell. You can use -qO-
or -qO -
.