simple/tiny/psg

10 lines
108 B
Bash
Executable File

#!/bin/sh
case `uname` in
Linux)
ps auxwwf | grep "$1"
;;
HP-UX)
ps -ef | grep "$1"
;;
esac