Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
os.kill
#2
Are you not missing a keyword?
  out = subprocess.getoutput("ps ax | tshark | grep -v grep").split("\n")
  ... should be:
  out = subprocess.getoutput("ps ax | grep tshark | grep -v grep").split("\n")
Reply


Messages In This Thread
os.kill - by elstolbo - Jan-25-2020, 04:37 PM
RE: os.kill - by ibreeden - Jan-26-2020, 04:13 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to Kill Dead Loop of "while" cheers100 4 2,800 Aug-22-2019, 09:30 AM
Last Post: cheers100

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020