I like the output format, but you may be able to achieve similar results with nmap:
nmap -sn -iL input_list -oG output
-sn performs a ping scan and skips nmap's port scan.
-iL reads input from a list, one item per line
-oG writes the output to a file in a grep-friendly format.
You can close this issue. Your solution works, just wanted to share an alternative!
i really appreciate for your comment and suggestion! thank you sharing the alternative approach using nmap. It's great to see different methods for achieving similar results.
I like the output format, but you may be able to achieve similar results with nmap:
-sn
performs a ping scan and skips nmap's port scan.-iL
reads input from a list, one item per line-oG
writes the output to a file in a grep-friendly format.You can close this issue. Your solution works, just wanted to share an alternative!