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

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

    On Linux

    cat /proc//cmdline
    

    get's you the commandline of the process (including args) but with all whitespaces changed to NUL characters.

提交回复
热议问题