Interviewer And Interviewee Guide

Unix IPC Interview Question:

What Happens when we execute a Unix command?

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online Unix IPC Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.