This website requires JavaScript.
Explore
Help
Register
Sign In
hjp
/
simple
Watch
1
Star
0
Fork
You've already forked simple
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
2552b38965
simple
/
tiny
/
psg
10 lines
118 B
Plaintext
Raw
Normal View
History
Unescape
Escape
First release
2000-01-11 14:24:36 +01:00
#!/bin/sh
case `uname` in
Linux)
allow arbitrary number of arguments (instead of exactly 1).
2012-04-02 11:34:22 +02:00
ps auxwwf | grep "$@"
First release
2000-01-11 14:24:36 +01:00
;;
HP-UX)
allow arbitrary number of arguments (instead of exactly 1).
2012-04-02 11:34:22 +02:00
UNIX95=1 ps -efH | grep "$@"
First release
2000-01-11 14:24:36 +01:00
;;
esac