What is the most efficient Linux command for determining whether there is a running process named runme?
- netstat –a > runme
- netstat –a < runme
- netstat –a | grep runme
- ps -ef > runme
- ps -ef < runme
- ps –ef | grep runme
Explanation & Hint:
The most efficient Linux command for determining whether there is a running process named “runme” is:
This command lists all processes using the |