Question: Write a mini shell program using the template code #define TRUE 1 while (TRUE) { type prompt( ); read command(command, parameters); if (fork( ) !=
Write a mini shell program using the template code
#define TRUE 1
while (TRUE) {
type prompt( );
read command(command, parameters);
if (fork( ) != 0) {
/* Parent code. */ waitpid(1, &status, 0);
} else {
/* Child code. */ execve(command, parameters, 0);
} }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
