常用shell脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用shell脚本相关的知识,希望对你有一定的参考价值。
#!/bin/bash # 检查192.168.1.1—192.168.1.254 主机是否存活
for ip in 192.168.1.{1..254};
do
if ping -c 1 $ip >/dev/null; then
echo "$ip OK."
else
echo "$ip NO!"
fi
done
#!/bin/bash #检查多个域名是否可以访问
URL="www.baidu.com www.sina.com www.jd.com"
for url in $URL; do
HTTP_CODE=$(curl -o /dev/null -s -w %{http_code} http://$url)
if [ $HTTP_CODE -eq 200 -o $HTTP_CODE -eq 301 ]; then
echo "$url OK."
else
echo "$url NO!"
fi
done
本文出自 “飞天小妖” 博客,请务必保留此出处http://065432.blog.51cto.com/3079397/1940815
以上是关于常用shell脚本的主要内容,如果未能解决你的问题,请参考以下文章