What Happens when you execute a command?

Answers were Sorted based on User's Feedback



What Happens when you execute a command?..

Answer / amit

When command is given then unix os will fork the shell i.e
will creat a new process and will execute the command using
exec command...something like suppose you gave command "ls"
in the shell then...
fork();
exec(ls);
It will give you the result and after this the child process
will die.

Is This Answer Correct ?    17 Yes 2 No

What Happens when you execute a command?..

Answer / basha

Hi
command execute process used by shell
it will check
1.physical memory
a)alias
b)functions
2.HDD
c)builtin commands
d)path
e)execute permission
f)system calls FORK_EXEC_EXIT
it it founds then it will execute and give the info other
wise it shows shell name and not founs.

Is This Answer Correct ?    2 Yes 2 No

What Happens when you execute a command?..

Answer / kumar

os calls exec() function to execute the command and
displays the output

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Unix IPC Interview Questions

Predict the output of the following program code main() { fork(); printf("Hello World!"); }

3 Answers  


What is semaphone?

5 Answers   HCL,


What is unix ipc?

1 Answers  


Linking across directories?

2 Answers  


How to get or set an environment variable from a program?

1 Answers  


Max relaxable permisssion value with out giving write permission to others?

2 Answers   IBM,


In Unix inter process communication take place using?

2 Answers  


What are various IDs associated with a process?

3 Answers  


What is the condition required for dead lock in unix system?

1 Answers  


What is IPC? What are the various schemes available?

5 Answers  


set-user-id is related to (in unix)

1 Answers  


What is ipc in unix?

1 Answers  


Categories