In windows its Task Manager , in Unix whats the command?
-
tm -all
-
task -a
-
ps
-
ps -alltasks
C
Correct answer
Explanation
In Unix-like systems, the 'ps' (process status) command displays information about active processes, serving a similar purpose to Windows Task Manager. The options 'tm -all', 'task -a', and 'ps -alltasks' are not standard Unix commands. Ps can be combined with various options (like ps -aux or ps -ef) to display detailed process information.