技术解析

shell 获取进程 id
0
2021-06-28 06:15:21
idczone

如何在 shell 中获取上一个执行的进程 id

# test.sh
# 想保存运行 xxx.sh 的进程 id,然后保存到文件中

sh ./xxx.sh > /dev/null 2>&1 &
echo "$!"
echo "$!" > ./test.pid

这样子获取的 $!不准确,正确姿势是什么


echo $$

$ sh ./1.sh > /dev/null 2>&1 &
[1] 67891
[1] + 67891 done sh ./1.sh > /dev/null 2>&1
echo $!
67891
没发现不对的地方啊

cat /proc/self/status
里面有 Pid 一行,就是进程自己的 pid,PPid 是 parents 的 pid

换个说法,执行了 sh ./xxx.sh 后,xxx.sh 会后台启动一个进程,想把启动的这个进程 id 记录下来 kill,$! 是 sh ./xxx.sh 的 pid,那 xxx.sh 启动的呢?不知道描述的清楚不

在$!再加 1 就是 xxx.sh 后台启动的 pid,如果直接$! + 1 的话似乎太草率了。。。

那你在 xxx.sh 里执行完进程后面获取$!就可以

楼上好复杂啊,直接这样不就获取了:pgrep 'pidname',如 pgrep 'test.pid'

https://i.loli.net/2017/09/27/59cb6386c1a22.png

大概看明白你的需求了,假定 xxx.sh 中只启动一个进程,可以这样:

sh ./xxx.sh > /dev/null 2>&1 &
pid_sh=$!
pid_sh_child=$(pgrep -P $pid_sh)
echo $pid_sh_child
echo $pid_sh_child > ./test.pid

脚本能修改么?能的话直接在脚本里获取进程的 id 保存到文件

后台第一个进程就是 %1, 第二个就是%2, 以此类推

数据地带为您的网站提供全球顶级IDC资源
在线咨询
专属客服