获取子进程的脚本命令?

获取子进程的脚本命令?

有没有办法检索负责子执行的脚本命令?
例如:
如果我运行一个名为runX arg1 arg2(X 是进程名称)的脚本

[some code]
X arg3 arg4

现在当我检查每个孩子和家长的命令时

PID=`pidof X` # PID of X
PPID=`cat /proc/$PID/status | grep PPid ` # PPID of X
CMDP=`cat /proc/$PPID/cmdline` # this will return the shell name rather than runX arg1 arg2
CMDC=`cat /proc/$PID/cmdline` # this will return X arg3 arg4 

我想检索此命令runX arg1 arg2

相关内容