gpt4 book ai didi

bash - 如何使用 bash 找到给定进程的顶级父 PID?

转载 作者:行者123 更新时间:2023-11-29 08:45:24 30 4
gpt4 key购买 nike

假设我运行 ps axf,我可以看到我的命令的进程树如下所示:

  800 ?        Ss     0:00 /usr/sbin/sshd
10186 ? Ss 0:00 \_ sshd: yukondude [priv]
10251 ? S 0:00 \_ sshd: yukondude@pts/0
10252 pts/0 Ss 0:00 \_ -bash
10778 pts/0 S 0:00 \_ su -
10785 pts/0 S 0:00 \_ -su
11945 pts/0 R+ 0:00 \_ ps axf

我知道我可以检查 $$ 获取当前 shell 的 PID (10785) 或检查 $PPID 获取父 PID (10778)。

但我只想要顶级父 PID,在本例中为 800(SSH 守护程序)。有什么方法可以轻松做到这一点?

我从this SO answer中学到了我可以递归检查 /proc/PID/stat 文件中的第 4 个条目以找到每个进程的父 PID:

# cut -f4 -d' ' /proc/10785/stat
10778
# cut -f4 -d' ' /proc/10778/stat
10252
# cut -f4 -d' ' /proc/10252/stat
10251
# cut -f4 -d' ' /proc/10251/stat
10186
# cut -f4 -d' ' /proc/10186/stat
800
# cut -f4 -d' ' /proc/800/stat
1

(顶级父 PID 将是我到达 init 的 PID 之前的那个,即 1。)

在我编写一个小循环(我什至不确定您是否可以在 bash 中使用递归)来执行此操作之前,是否有我缺少的更直接的方法?也许只是 /proc 下文件的另一个参数?通过这些文件的 grep 没有揭示任何明显的东西。

编辑:当然,所有Linux进程的顶层进程都是/sbin/init,PID为1。我要的是之前父进程的PID:倒数第二个 parent 。

最佳答案

如果没有更好的解决方案,这里有一个简单的(递归)脚本,用于获取您提供的任何进程号的顶级父 PID(如果您省略 PID 参数,则为当前 shell):

#!/bin/bash
# Look up the top-level parent Process ID (PID) of the given PID, or the current
# process if unspecified.

function top_level_parent_pid {
# Look up the parent of the given PID.
pid=${1:-$$}
stat=($(</proc/${pid}/stat))
ppid=${stat[3]}

# /sbin/init always has a PID of 1, so if you reach that, the current PID is
# the top-level parent. Otherwise, keep looking.
if [[ ${ppid} -eq 1 ]] ; then
echo ${pid}
else
top_level_parent_pid ${ppid}
fi
}

只需获取此脚本并调用top_level_parent_pid,根据需要使用或不使用 PID 参数。

感谢@Dennis Williamson 就如何简洁高效地编写此脚本提出了许多建议。

关于bash - 如何使用 bash 找到给定进程的顶级父 PID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3586888/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com