I have to determine in a repetitive and fast way if different connection still exist.
My input is a list of IP-Adresses and my output should look like this:
| IP-Adress | Connection | Response time |
| 1.2.3.4 | found | 20ms |
| 4.5.6.7 | found | 25ms |
| 8.9.10.11 | not found | null |
Response time would be nice, but is not urgent. My idea was to write a list of cmd ping commands to a .bat file and to run this by command line tool. But I don´t know for example how to handle an error. I appreciate any suggestions.