Problem Statement
Which command displays currently running processes?
Explanation
The ps command (process status) lists active processes along with their IDs, owners, and CPU usage.
The -ef option shows all processes in full format, often used with grep to locate specific tasks.
Code Solution
SolutionRead Only
ps -ef | grep nginx
Practice Sets
This question appears in the following practice sets: