10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
|
#!/bin/sh
|
||
|
case `uname` in
|
||
|
Linux)
|
||
|
ps auxww | grep "$1"
|
||
|
;;
|
||
|
HP-UX)
|
||
|
ps -ef | grep "$1"
|
||
|
;;
|
||
|
esac
|