Created
April 10, 2020 15:55
-
-
Save deevis/7842853971b03f2c7e3aee95169326a9 to your computer and use it in GitHub Desktop.
Ping IP addresses referenced by nslookup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for ip in `nslookup 7-review-feature-ch-m7rnev.review.verisys.com | grep -v "#" | grep "Address:" | sed 's/.*: \(.*\)/\1/g'`;do echo $ip; ping -c 3 $ip | grep time; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment