手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >检测网站down掉后自动发信的shell脚本代码
检测网站down掉后自动发信的shell脚本代码
摘要:复制代码代码如下:#!/bin/bash#websitetestscriptswhiletrue;doforcycle_tempin`cat...

复制代码 代码如下:

#!/bin/bash

#website test scripts

while true;do

for cycle_temp in `cat url_list`

do

if lynx -dump `echo ${cycle_temp}` -accept_all_cookies|grep "true";then

echo "The website is running naturally"

else

echo "${cycle_temp} has been offline please attend it now!">/opt/test.txt

mail -v -s "website down mail" reterry123@163.com < /opt/test.txt

fi

done

sleep 2s

done

【检测网站down掉后自动发信的shell脚本代码】相关文章:

linux 监视端口是否正常的shell脚本

Linux下查找后门程序 CentOS 查后门程序的shell脚本

用expect实现的自动登录到多台服务器的shell脚本

用来查看linux内存使用情况的shell脚本

把文件复制N份的2个Shell脚本代码

ping发现掉包报警的shell代码

VPS自动备份数据库到FTP的脚本代码

防止ARP攻击的shell代码

ssh expect自动登录的脚本代码

简单的远程FTP定时备份Shell脚本分享

精品推荐
分类导航