Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Solaris any command is there to find out dynamically how many instance of a process is created and killed. Like tail -f command logs are updated dynamically , can we find out about a number of instances of a process dynamically updated.

share|improve this question
This is off-topic for StackOverflow. Please see: superuser.com or serverfault.com – Brian Roach Feb 22 at 6:32
Try unix.stackexchange.com – nolan6000 Feb 28 at 16:19

closed as off topic by dtmilano, Brian Roach, talonmies, Jim Garrison, cweiske Feb 22 at 8:03

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

There is no command like this, you have to implement a small script that queries the process list on a periodcal base. Order and filter the result as requested by call arguments and display required process information like id and name.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.