PDA

View Full Version : Unix ps command for Mac OS apps


macrules101
02-28-2004, 11:10 PM
When i run the ps command through unix it only shows up all current proceses in the unix shell. How can i get this to encompass all of mac os processes?
is this even posible?

thanks

BTW: Mac Rules!!!

Brad
02-29-2004, 01:04 AM
ps -ax

Enjoy. :)

Whisper
02-29-2004, 01:18 AM
The ps man page says something about it only displaying processes attached to a terminal. Typing "top" will give you info about OSX processes though.

Whisper
02-29-2004, 01:40 AM
Originally posted by Brad
ps -ax

Enjoy. :) Cool! I didn't know about that :)

Scott
02-29-2004, 07:30 AM
>man ps

Noleli2
02-29-2004, 09:39 AM
If you really want to see just OS X apps, assuming you keep them where you're supposed to, you can just pipe a grep into ps:

ps -ax | grep Applications

\/\/ickes
02-29-2004, 11:31 AM
Ok just to point out...

You don't need the "-" with the ps commands you have listed with bash.

ps ax
(and for memory usage)
ps aux

However if you want the same output as ps ax only just the process names (not the directorys) you need the "-" and the command is "ps -A"

This is just because of ps's different style of options...

"ps - [letters]" are Unix98 style options.
"ps [letters]" are BSD-style options. Which I guess is OSX style too.
"ps --[words]" are GNU style options.

All get the job done... so it is up to you..