simple/tiny/psg

10 lines
118 B
Plaintext
Raw Normal View History

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