configuration/local/bin/whoisthere

7 lines
119 B
Plaintext
Raw Normal View History

2016-12-02 14:44:59 +01:00
#!/bin/sh
cat /data/random/ips | while read name host ip; do
ping -c1 -w1 "$ip" > /dev/null && echo "$name"
done