Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[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
[red]grep '[i]whatever[/i]' /url/list |[/red] wget -S --spider -i [red]-[/red] > /output/file