Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In this assignment, you will develop a simple custom shell named 'myshell using C programming language that supports the followings: 1. Run a simple command,
In this assignment, you will develop a simple custom shell named 'myshell using C programming language that supports the followings: 1. Run a simple command, e.g. 'Is -l', by invoking the corresponding Unix utility program in the path defined by the PATH environment variable Run several commands separated by sequentially, e.g. "clear, Is -l" 3. Run up to three commands connected via pipes, e.g. "Is | grep "Ad" | wc -I" Hint: If there are two commands in pipe, the parent gets the command (for example, "Is wc-l") and recognizes that there are two commands that need to be connected via a pipe. Thus it will have a pipe to be shared, and then fork a child process (to do "Is") which will fork its child process (to do "wc-") with the pipe shared (so that the output of one process doingls" will be input to the input of the other process doing "wc-r'). Meanwhile the parent waits till all the child processes are terminated, and then back to the loop for the next command from the user. Extending the shell for two commands in pipe, your shell should handle up to "three commands in pipe (or example, "Is grep "csort" 4. Can handle file redirection (output,>append) Hint. You may use dup or dup2 to redirect the file input or output for the given command ("Is") which a child process will execute (with exec) Note: do not use "system" call in this programming assignment. Your program does not have to tokenize the command lines inputted by a user, but must correctly recognize commands (eg. ls), and special symbols (eg. s, etc.). In this assignment, you will develop a simple custom shell named 'myshell using C programming language that supports the followings: 1. Run a simple command, e.g. 'Is -l', by invoking the corresponding Unix utility program in the path defined by the PATH environment variable Run several commands separated by sequentially, e.g. "clear, Is -l" 3. Run up to three commands connected via pipes, e.g. "Is | grep "Ad" | wc -I" Hint: If there are two commands in pipe, the parent gets the command (for example, "Is wc-l") and recognizes that there are two commands that need to be connected via a pipe. Thus it will have a pipe to be shared, and then fork a child process (to do "Is") which will fork its child process (to do "wc-") with the pipe shared (so that the output of one process doingls" will be input to the input of the other process doing "wc-r'). Meanwhile the parent waits till all the child processes are terminated, and then back to the loop for the next command from the user. Extending the shell for two commands in pipe, your shell should handle up to "three commands in pipe (or example, "Is grep "csort" 4. Can handle file redirection (output,>append) Hint. You may use dup or dup2 to redirect the file input or output for the given command ("Is") which a child process will execute (with exec) Note: do not use "system" call in this programming assignment. Your program does not have to tokenize the command lines inputted by a user, but must correctly recognize commands (eg. ls), and special symbols (eg. s, etc.)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started