平常若要找出 Apache2 的所有 process id,會搭配 awk 來使用,如下範例:
- ps aux | grep apache2 | awk '{print $2}'
但是這個 pid 列表常常會包含 grep 的 pid。
使用 pidof 就不會有這個困擾囉~
使用 pidof 找出此程式的所有 process id
pidof 套件在 sysvinit-utils - System-V-like utilities
- apt-get install sysvinit-utils # 安裝
pidof 使用範例
- pidof apache2 # 找出 Apache2 的所有 process id