Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Writing a Simple Shell A shell is a program that takes your commands from the keyboard and passes them to the operating system. Typically, a

Writing a Simple Shell

A shell is a program that takes your commands from the keyboard and passes them to the operating system. Typically, a shell presents a prompt, waiting for the user to enter a command and its parameters. The shell reads the command and parameters, and uses fork to create a child, a duplicate of itself, another shell. The child shell executes the command and exits while the parent waits for the child to finish like the following:

 while ( 1 ) { //repeat forever type_prompt(); //display prompt on screen read_command ( command, parameters ); // read input from terminal if ( fork() != 0 ) // parent wait ( NULL ); //wait for child else{ execve ( commamd, parameters, 0 ); // execute command } } 

Work to do:

  1. Write a simple shell like the above but it contains enough code that it actually works so you can test it. For simplicity, you may assume that all commands are in the directory /bin.

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

Knowledge Discovery In Databases

Authors: Gregory Piatetsky-Shapiro, William Frawley

1st Edition

ISBN: 0262660709, 978-0262660709

More Books

Students also viewed these Databases questions

Question

Write down the Limitation of Beer - Lamberts law?

Answered: 1 week ago

Question

Discuss the Hawthorne experiments in detail

Answered: 1 week ago

Question

Explain the characteristics of a good system of control

Answered: 1 week ago

Question

State the importance of control

Answered: 1 week ago