Answer Posted / 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 |
Post New Answer View All Answers
Explain linking across directories?
What is i-node numbers?
Explain how do you execute one program from within another?
Please describe the initial process sequence while the system boots up?
Explain about daemon?
How to write the program on full-duplex communication on bidirectional(e.g using two pipes)?
Explain the advantage of executing a process in background?
What are two different models of ipc differentiate both?
Explain the system calls used for process management?
Please explain fork() system call?
What is ipc in unix?
Which ipc is the fastest in unix?
How to write the program on full-duplex communication on bidirectional?
What is the very first process created by kernel?
Which ipc is faster?