Retrieve command line of process based on PID on SunOS 5.8 (Solaris 8)

Under linux I used to retrieve command line of process by reading thecmdlinefile in/proc/<pid> folder. I have not figured yet a way to retrieve the same info undersunOs 5.8.

`ps` can't really help due to the fact that most process (ksh scripts btw) are launched with full path and as such are too long for the limited description line of ps.

Any hint will be greatly appreciated.

[432 byte] By [MP464] at [2007-11-26 10:32:33]
# 1
pargs <pid of process>in old Solaris that would be /usr/proc/bin/pargs <pid of process> .7/M.
mAbrante at 2007-7-7 2:40:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2
Unfortunatly pargs is nowhere to be found (i have parsed bin path). Not even a man page about it, so i think that it is not available in my environment, thanks anyway. I keep searching.
MP464 at 2007-7-7 2:40:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 3
try/usr/ucb/ps auxwww |grep <pid> .7/M.
mAbrante at 2007-7-7 2:40:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 4
Respect, it work great thanks !!
MP464 at 2007-7-7 2:40:30 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...