Difference between revisions of "A Brain-dead Python Ping Utility"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (New page: ==Script== <pre> #!/usr/bin/python # # Purpose: Ping a range if IPs # # Copyright (C) Peter Harding, 2003 # All rights reserved # # $Id:$ # #-----------------------------...) |
PeterHarding (talk | contribs) |
||
Line 19: | Line 19: | ||
os.system(cmd) | os.system(cmd) | ||
</pre> | </pre> | ||
[[Category:Python]] |
Revision as of 15:45, 25 February 2008
Script
#!/usr/bin/python # # Purpose: Ping a range if IPs # # Copyright (C) Peter Harding, 2003 # All rights reserved # # $Id:$ # #--------------------------------------------------------------------- import os for i in range(1,20): cmd = "ping 10.10.10.%d" % i print cmd os.system(cmd)