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

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

    try ps -n in a linux terminal. This will show:

    1.All processes RUNNING, their command line and their PIDs

    1. The program intiate the processes.

    Afterwards you will know which process to kill

    0 讨论(0)
提交回复
热议问题