Você terá que instalar o wget
se já não o tiver:
#!/bin/bash
IFS='
'
LIST='http://www.google.com
http://www.drk.com.ar/daphne.php
http://www.google.com/this-is-an-error
http://serverfault.com/questions
'
for I in $LIST
do
wget -q --no-cache --spider $I
if [ $? != 0 ]; then
echo Error: $I
fi
done