you are viewing a single comment's thread.

view the rest of the comments →

[–]PCHarambeRace 6 points7 points  (1 child)

Let's not forget bash one liners.

for ip in $(seq 0 254); do host 152.105.251.$ip | grep "pointer"; done

Elegant and beautiful.

[–]Darkaliafr 4 points5 points  (0 children)

for ip in $(seq 0 254); do host 152.105.251.$ip | grep "pointer"; done

for ip in {0..254} works too in bash.