是否可以从Shell脚本中的父进程ID获取子进程ID?
我有一个要使用Shell脚本执行的文件,这会导致一个新进程 process1 (父进程)。这个 过程1 已经分叉的另一个进程 过程2 (子进程)。使用脚本,我可以使用以下命令获取 process1 的pid :
cat /path/of/file/to/be/executed
但我无法获取子进程的pid。
只需使用:
pgrep -P $your_process1_pid