Comment on
Windows 10 Support Ending Soon
Reply in thread
#!/bin/bash
for i in 0..254; do ping -c 4 10.0.0.$i &; done
wait
Throwing that many background tasks at once is a little risky, but awesome
Comment on
Windows 10 Support Ending Soon
Reply in thread
#!/bin/bash
for i in 0..254; do ping -c 4 10.0.0.$i &; done
wait
Throwing that many background tasks at once is a little risky, but awesome