Skip to content

Commit 69adde9

Browse files
committed
correctly handle intended timeout. sort results
1 parent 6e30ad1 commit 69adde9

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

net/ping-local-network.sh

+4-7
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,11 @@ if [ -z "$prefix" ]; then
3434
fi
3535

3636
doit() {
37-
ping -c 1 "$1" | grep -B 1 "1 received" | grep -o "$1"
37+
# Ping $1 with count=1, wait=5s, and only show results if successful.
38+
ping -c 1 -W 5s "$1" | grep -B 1 "1 received" | grep -o "$1"
3839
}
3940

4041
for ((x=1; x<255; x++));
4142
do
42-
doit "$prefix.$x" &
43-
done
44-
45-
sleep 4
46-
47-
exit
43+
doit "$prefix$x" &
44+
done | sort --version-sort # This sort adds an implicit "wait".

0 commit comments

Comments
 (0)