Mostly site would have info on things I work on i.e Oracle VM, Weblogic, oracle db or any new stuff on linux etc... that might be of help to someone out there... ... ...
Tuesday, August 30, 2011
Exit status of Wget Validation of links inside File
while read file; do
wget -q "$file"
if [ $? -ne 0 ]; then
echo "Link not up"
else
echo "OK"
fi
done < url
No comments:
Post a Comment