生产环境中shell
Posted sjzz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生产环境中shell相关的知识,希望对你有一定的参考价值。
#!/bin/bash
for i in `seq 1 254`
do
ping -c 1 192.168.238.$i > /dev/null
if [ $? -eq 0 ]
then
echo "192.168.238.$i存活"
else
echo "192.168.238.$i不存活" >> /root/a.txt
fi
done
以上是关于生产环境中shell的主要内容,如果未能解决你的问题,请参考以下文章