How to list all the PIDs and names of all the runing processes
By Jessica Wood •
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
01 Answer
You can use the o argument instead of u to specify what you want to see:
ps axo pid,comm 0