We've expanded our news coverage and improved our search! Visit
oreilly.com for the latest or search for all things across O'Reilly!
Article:
 |
|
Control Your Mac from Afar
|
| Subject: |
|
ps |
| Date: |
|
2003-09-21 18:48:29 |
| From: |
|
anonymous2
|
|
|
|
If you really want to find all the processes that invoke applications (well, those that end in ".app") you'll need to use the -ww flags to ps. Otherwise long application paths aren't going to show under a simple ps -aux invocation. That is, the command in the article should be something like
% ps -wwaux | grep ".app"
Cheers,
Paul
|