|
I am trying to kill a process that was started via the Popen command: s = sub.Popen( ['tshark -r ' + orig_file_name + ' -o column.format:"Info","%i"'], shell=True, stdout=sub.PIPE, stderr=sub.PIPE ) This process runs over a period of time. Is there a simple way to kill it? I tried using the "kill()" function but that requires knowledge of the pid of the process; Popen returns a file pointer but not the pid of the process that was started. From the desk of Nicole A. Powell..... |