aboutsummaryrefslogtreecommitdiff
path: root/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'process.py')
-rwxr-xr-xprocess.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/process.py b/process.py
new file mode 100755
index 0000000..effcbbc
--- /dev/null
+++ b/process.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+
+import os
+
+start_pids = [pid for pid in os.listdir('/proc') if pid.isdigit()]
+print 'PIDs', str(start_pids)
+
+while True:
+ cur_pids = [pid for pid in os.listdir('/proc') if pid.isdigit()]
+ for pid in cur_pids:
+ if pid in start_pids:
+ continue
+ try:
+ cmdline = open(os.path.join('/proc', pid, 'cmdline'), 'rb').read().replace('\x00', ' ')
+
+ if len(cmdline) == 0 or cmdline.startswith('bash') is True or \
+ cmdline.endswith('sh') is True:
+ continue
+ start_pids.append(pid)
+ outstr = 'NEW[%s]: ' % (pid) + cmdline
+ print outstr
+ except IOError:
+ print 'PID', pid, '!exist'
+ continue