Made a small batch script to check my network ips, just for fun.
#!/bin/bash
for i in {1..150}
do
ping -c 3 -w 100 10.0.0.$i | grep -e "icmp_req" -e "PING"
done
As you are no doubt aware, I've based the names of my devices, the naming scheme, on characters in Sir Arthur Conan Doyle's Sherlock Holmes.for i in {1..150}
do
ping -c 3 -w 100 10.0.0.$i | grep -e "icmp_req" -e "PING"
done
Lol, dude, your shellscript... Nmap?
ReplyDelete