Which is the command used to find out currently executing
Process in UNIX?

Answers were Sorted based on User's Feedback



Which is the command used to find out currently executing Process in UNIX?..

Answer / hemapriyadharshini.s

ps -ef

Is This Answer Correct ?    46 Yes 4 No

Which is the command used to find out currently executing Process in UNIX?..

Answer / ras

ps -elf

Is This Answer Correct ?    4 Yes 3 No

Which is the command used to find out currently executing Process in UNIX?..

Answer / abani_mahana

ps -ef

Is This Answer Correct ?    1 Yes 0 No

Which is the command used to find out currently executing Process in UNIX?..

Answer / sricharan

1. ps -ef
2. Top

Is This Answer Correct ?    1 Yes 1 No

Which is the command used to find out currently executing Process in UNIX?..

Answer / guest

ps-e

Is This Answer Correct ?    0 Yes 0 No

Which is the command used to find out currently executing Process in UNIX?..

Answer / divya

ps -ef

here -f means Full listing showing the PPID(Parent PID) of each process
-e means All processes including user and system

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

Which command will you use to change the permissions on file?

7 Answers  


In UNIX, what is the command to edit contents of the file?

9 Answers  


if we create a file, in that 10 rows(means 1,2,....9,10 like). i want 7 row exactly, which command use in unix? plz send this question.

28 Answers   TCS,


What does sed command do in unix?

0 Answers  


what do you understand by 'unix is a portable os'?

3 Answers   Infosys,


What is grep r?

0 Answers  


can we use cat command as an editor ..???

12 Answers   TCS,


Name the general commands in using unix os for a beginner?

0 Answers  


What is merge command in unix?

0 Answers  


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


What is the use of find command in unix?

0 Answers  


what do you understand by 'building block primitive'?

0 Answers   Infosys,


Categories