1
1
# Script Name : pscheck.py
2
2
# Author : Craig Richards
3
3
# Created : 19th December 2011
4
- # Last Modified :
5
- # Version : 1.0
4
+ # Last Modified : 17th June 2013
5
+ # Version : 1.1
6
6
7
- # Modifications :
7
+ # Modifications : 1.1 - 17/06/13 - CR - Changed to functions, and check os before running the program
8
8
9
9
# Description : Process check on Nix boxes, diplsay formatted output from ps command
10
10
11
11
import commands , os , string
12
12
13
- program = raw_input ("Enter the name of the program to check: " )
13
+ def ps ():
14
+ program = raw_input ("Enter the name of the program to check: " )
14
15
15
- try :
16
+ try :
16
17
#perform a ps command and assign results to a list
17
18
output = commands .getoutput ("ps -f|grep " + program )
18
19
proginfo = string .split (output )
24
25
Process ID:\t \t " , proginfo [1 ], "\n \
25
26
Parent process ID:\t " , proginfo [2 ], "\n \
26
27
Time started:\t \t " , proginfo [4 ]
27
- except :
28
+ except :
28
29
print "There was a problem with the program."
29
30
30
-
31
+ def main ():
32
+ if os .name == "posix" : # Unix/Linux/MacOS/BSD/etc
33
+ ps () # Call the function
34
+ elif os .name in ("nt" , "dos" , "ce" ): # if the OS is windows
35
+ print "You need to be on Linux or Unix to run this"
36
+
37
+
38
+ if __name__ == '__main__' :
39
+ main ()
0 commit comments