The scripts launches the application nmap. Only it doesn't print out the var to the application nmap. It does however if I print them separately.
Looking for some suggestions, many thanks.
Script:
import os
import subprocess
xIP=input("Please enter IP-address to use on NMAP port-scan: ")
xOP=input("Please apply options to add on port-scan: ")
print("Entered values: ", xIP + xOP)
command = "nmap print xIP xOP"
#os.system(command)
subprocess.Popen(command)
input("Press ENTER to exit application...")