[gray]# displays full HTTP response headers[/gray]
wget -S --spider -i /url/list > /output/file
[gray]# displays only brief result, but none if the host is unreachable[/gray]
wget -S --spider -nv -i /url/list > /output/file
[gray]# ensures each URL appears in the log[/gray]
while read u; do echo "$u"; wget -S --spider -nv "$u" ; done < /url/list > /output/file
[gray]# ensures each URL appears in the log and has status specified[/gray]
while read u; do echo "$u"; wget -S --spider -nv "$u" || echo "unreachable"; done < /url/list > /output/file