Jaimin Joshi
Jaimin Joshi

Reputation: 83

Listing completed processes in Unix

I have a PID,but the process is not running anymore and has completed. I need to get the complete details associated with that PID. Is it possible? I am using Solaris 5.1 OS.

Upvotes: 1

Views: 3012

Answers (1)

nj-ath
nj-ath

Reputation: 3146

If the process is a zombie, then you can find it by

ps -ef |grep -i defunct


Otherwise(if the process isn't a zombie) there is no way to retrive the information

Upvotes: 1

Related Questions