Find the Process ID (PID) of a Process
April 24, 2026
To find the pid of a running process, try the following
ps -e | grep -i eix
3166 pts/5 00:00:00 eix-sync
The ps lists processes you can then grep the name.
April 24, 2026
To find the pid of a running process, try the following
ps -e | grep -i eix
3166 pts/5 00:00:00 eix-sync
The ps lists processes you can then grep the name.