simple/tiny/psg

10 lines
108 B
Plaintext
Raw Normal View History

2000-01-11 14:24:36 +01:00
#!/bin/sh
case `uname` in
Linux)
ps auxwwf | grep "$1"
2000-01-11 14:24:36 +01:00
;;
HP-UX)
ps -ef | grep "$1"
;;
esac