MacOS – Anyone knows how to view the nice value of a process under Mavericks

command linemacosunix

Used to be able to view the UNIX nice value of a process in the top CLI utility.
I think it's gone from the top utility on Mavericks? Any other ways to view it?

Best Answer

Use ps with a lower case L to directly view current nice values:

ps -l

or for specific process id (PID)

ps -l -p __PID___