Update util.py

master
Arjix 2021-11-12 20:02:16 +02:00 committed by GitHub
parent 669f32d415
commit e04cddea19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -531,6 +531,7 @@ def getAllProcesses_unix():
return []
elif sys.platform.startswith('linux'):
cmd = 'ps aux'
return []
out = os.popen(cmd).read()
out = out.split('\n')[1:]
placeholder = list()