How to get the command line args passed to a running process on unix/linux systems?

后端 未结 13 576
梦谈多话
梦谈多话 2020-11-30 16:57

On SunOS there is pargs command that prints the command line arguments passed to the running process.

Is there is any similar command on other Unix env

13条回答
  •  独厮守ぢ
    2020-11-30 17:25

    If you want to get a long-as-possible (not sure what limits there are), similar to Solaris' pargs, you can use this on Linux & OSX:

    ps -ww -o pid,command [-p  ... ]
    

提交回复
热议问题