michaelsanford
Translator, Web Developer
Another frivolous but potentially interesting thread: your current highest process-ID.
I got the idea for this one day when I was amazed to see very high PIDs on my iBook, which I restart rather often. I can only imagine those with Mac Pros or XServes who don't reboot for months at a time.
Quick code to return the highest PID (run in Terminal.app):
I got the idea for this one day when I was amazed to see very high PIDs on my iBook, which I restart rather often. I can only imagine those with Mac Pros or XServes who don't reboot for months at a time.
Quick code to return the highest PID (run in Terminal.app):
Code:
ps a | grep ps | grep -v grep | awk '{print $1}'
Last edited: