Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In C language I will upvote/ downvote the answer if it is correct or spam Functions int main(int argc, char** argv) Parameters Parameters: int argc,

In C language

image text in transcribed

image text in transcribed

I will upvote/ downvote the answer if it is correct or spam

Functions int main(int argc, char** argv) Parameters Parameters: int argc, char **argv Return: EXIT_SUCCESS Parameters: none Return: char** pointer char** parse (void) int execute (char** args) Parameters: char** args Return: 0/1 int main(int argc, char** argv) The main function should display the MyShell> prompt. You should not change the name of the prompt. The main function should indefinitely run until terminated by CTRL+C or when the user types the exit command in the MyShell> prompt. It should call the parse() function in order to accept and process the command the user enters It should call the execute() function to actually execute the command char** parse(void) Gets the input typed by the user in the MyShell> prompt in the form of a line Splits the line into tokens The tokens are used to create a char** pointer which will serve as an argument for execvp int execute(char** args) char** args is obtained from the parse function You should fork a child and execute the command typed in by the user using EXECVP. You should only use execup and not other versions. When fork fails, an error message should be printed. However, the next MyShell> prompt should be shown. When execvp is not successful, an error message should be printed, and the child should terminate. However, the next MyShell> prompt should be shown. When an empty command is entered the next MyShell> prompt should be shown. When the command exit is entered by the user, the main program must exit [You may or may not fork in order to implement the exit command). The parent should wait for the child to terminate before it accepts another command. You can use wait or waitpid for this. Other guidelines or useful hints: User command plus arguments will not exceed 255 characters Each command may have different number of arguments Variables stored in Stack cannot be accessed outside of a function procedure, while data dynamically allocated in Heap can be accessed by any function within one program. Only one command should be typed at the MyShell> prompt, no pipelining of commands Commands run in MyShell> will assume the user's original path: Type "echo $PATH" to see the current path variable setting. Myshell is not responsible for finding the path for the commands or files. If the user makes a mistake typing a command and/or its arguments, execup should simply fail to run the command. A simple error should be shown, but next MyShell>prompt should be displayed. Please note that complicated commands like "cd may not work as shown in the sample output. If execvp was not successful (e.g., a wrong command), remember to exit(0) the child process

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

ISBN: 0123814790, 9780123814791

More Books

Students also viewed these Databases questions

Question

1. Television more Over watching faceing of many problems ?

Answered: 1 week ago

Question

Is there a link between chronic stress and memory function?

Answered: 1 week ago

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago