Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee24c2 commit 5824a1cCopy full SHA for 5824a1c
nslookup_check.py
@@ -8,6 +8,6 @@
8
9
# Description : This very simple script opens the file server_list.txt and the does an nslookup for each one to check the DNS entry
10
11
-import subprocess # Import the subprocess module
12
-for server in open('server_list.txt'): # Open the file and read each line
+import subprocess # Import the subprocess module
+for server in open('server_list.txt'): # Open the file and read each line
13
subprocess.Popen(('nslookup '+server)) # Run the nslookup command for each server in the list
0 commit comments