3

I know that there is this command :

ps aux 

to get all info about the running processes .. but I need only the names and ids for these processes , is there any command can list the processes ids or names only ?

Thanks

0

1 Answer 1

4

You can use the o argument instead of u to specify what you want to see:

ps axo pid,comm
0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .