mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 08:59:11 -06:00
4d2a38daf7
Former-commit-id: 43b4f3bce0
Former-commit-id: 76adfe46fc7bbd6da4ef800c0957807dadc48836
4 lines
117 B
Bash
Executable file
4 lines
117 B
Bash
Executable file
#!/bin/bash
|
|
for ip in $(seq 1 254); do
|
|
ping -c 1 172.30.0.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1&
|
|
done
|