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

后端 未结 13 630
梦谈多话
梦谈多话 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:08

    Rather than using multiple commands to edit the stream, just use one - tr translates one character to another:

    tr '\0' ' ' /cmdline
    

提交回复
热议问题