I am writing a session saver for GNU Screen. It needs to get every process argument list. Linux has /proc/PID/cmdline which separates arguments with \0. Solaris has pargs. But I am looking for a more crossplatform solution and ps tool seems to be the best bet. "ps -o command" displays argument list but separates arguments only with spaces. Is it possible to force ps to separate command arguments in a different way?

link|improve this question
Be aware that some programs deliberately obscure their arguments. You're also going to have to deal with the fact that arguments may have been quoted by the shell, or may have values that need to be interpreted dynamically when the process is started. – Pointy Oct 11 '10 at 20:08
I restart string of programs using: shell -c "starter-agent; shell". Definitely not bulletproof but works for now. – askonecki Oct 11 '10 at 20:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.