Questions tagged «pid»

3
为什么top和ps在相同的进程中显示不同的PID?
运行时top -H,我看到多个mysql线程都具有相同的PID。但是,ps -eLf我看到每个人都有不同的PID: ps -eLf UID PID PPID LWP C NLWP STIME TTY TIME CMD mysql 1424 1 1424 0 17 18:41 ? 00:00:00 /usr/sbin/mysqld mysql 1424 1 1481 0 17 18:41 ? 00:00:00 /usr/sbin/mysqld mysql 1424 1 1482 0 17 18:41 ? 00:00:00 /usr/sbin/mysqld mysql 1424 1 1483 0 …

3
在管道中较早获取命令的PID
我正在编写一个bash脚本,用于inotifywait监视目录并在检测到更改时启动操作。就像是: inotifywait -m ... | while read f; do something; done 由于inotifywait不会自行终止,因此该脚本不会停止。 所以我的计划是获取inotifywait进程的PID,将其保存到文件中,然后让另一个进程将其杀死,例如: inotifywait -m ... | { echo ??PID?? > pid-file; while ... } 但我不知道如何获取PID。有没有简单的方法可以做到这一点?另一种方法是将shell脚本的PID保存$$到文件中并杀死整个shell脚本,但是我想在while循环后进行一些清理。 我已经尝试过使用coproc,但我认为它会起作用,但似乎比所需的更为复杂。
11 bash  pipe  pid 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.