Saturday, May 8, 2010

Simple website link checker

Simple website link checker

check status of a list of links you have in a text file:

GIGRIB is useragent for pingdom.com

for i in `cat urls`; do echo -n $i ' '; wget -B --spider $i -S -U GIGRIB -O - 2>&1 | awk '/HTTP request sent, awaiting response/{getline;print}'; done

i will update with more info.

No comments:

Post a Comment