Hi I have searched various forums and here as well, I could find some answers for Linux and Mac but not able to find solution for Unix and specially Korn Shell.
How to get process name (command name) from process id (pid)
Below reference I found from SO This one And this one also
I tried below command
ps -eaf | awk '{ print substr($0, index($0, $9)) }'
Above command is failing at a point where TIME is given rather than Month and Date (because in this case there will be only 8 columns in string)
Any suggestion would help.