标签:css 版本 工作 ip地址 $1 code 使用情况 address add
工作中,我们有时需要对局域网中ip地址使用情况进行统计。可以使用shell脚本进行扫。
脚本功能:
#!/bin/bash
#2019年10月31日00:45:54
#IP address scanning v1
#sunjinhua
########################
NET_VER="$1"
NET="$NET_VER"
for ip in {1..250}
do
ping -c 1 $NET.$ip
if [ $? -eq 0 ];then
echo "$NET.$ip" >> list_online.txt
else
echo "$NET.$ip" >> list_offline.txt
fi
don
标签:css 版本 工作 ip地址 $1 code 使用情况 address add
原文地址:https://www.cnblogs.com/linux123/p/11768994.html