CMPE322 – OPERATING SYSTEMS PROJECT #1: Implementation of Your Own Shell Solved

30.00 $

Category:

Description

5/5 - (1 vote)

1. Introduction

 

In this project, you are going to implement your own shell (i.e Command Line Interpreter) which is composed of a set of certain commands. The functionalities of these commands are already available within the default shell of your Linux-based OS. However, it is desired to implement a customized shell so that we can easily remember the commands and their corresponding functionalities.

 

For example, even though you are experienced programmers and you know which command does which operation, it may be difficult to relate “ls” command to list the contents of the current directory. If the name of the command that provided this operation was “listdir”, life would be easier for the beginners.

 

The aim of this project is developing a program to achieve the aforementioned objectives. You have to implement your project on a Linux-based platform by using the GCC/G++ compiler. Your code will be tested on a Linux machine, so that you can consider these requirements as mandatory, not optional. It is allowed to use C or C++ of the main programming language of the project implementation.

 

2. Details of Implementation

 

The shell program will be executed as a typical C/C++ program compiled via the terminal. In other words, it is not expected in this project that your shell program will automatically become active after opening a new terminal window by setting your shell program as the default shell through various settings on the system.

 

Figure 1. Example execution of the customized shell implementation

 

Depending on your design, whether it is a single file or multi file program, your program will be compiled and it is executed as a new process by the terminal. A sample execution of the process and initial prompt of your shell program should be the same as the one depicted in Figure 1. After a welcome message, the prompt should start with the current user name on the system (Watch out: Please do not provide the user name as hardcoded, because it will be tested on a separate machine!) , followed by “>>>” symbols. Please consider that there should be a single space between your username and “>>>” symbols. (Hint: you can check “whoami” command).

 

Your shell program will be no different from the typical shell programs that exist on the system: the program waits for the command to be entered by the user, it is executed as soon as it is requested, and the program starts to wait for another command after the command is successfully completed. Your Shell program will continue to run until the interrupt signal or the “exit” command is entered.

 

Here is the list of commands that should be available on your shell program (Note: The shell should take an input command from the user after putting a single space following the “>>>” sequence, as shown in the example usage below):

● listdir

○ This command will print out the contents of the current directory, same as the “ls” command in bash.

○ Example usage: >>> listdir

● listdir -a

○ The listdir command can take a flag if provided, as “-a” (as done with “ls -a”). This flag provides the opportunity of listing the directories or files that starts with “.”, which means that they are the hidden contents.

○ Example usage: >>> listdir -a

● currentpath

○ This command will print out the current working directory. This functionality is provided by the “pwd” command in most of the shells.

○ Example usage: >>> currentpath

● printfile (fileName)

○ This command will take a file name as an argument, read its content and write them on the standard output. This functionality is provided by the “cat” command in most of the shells.

○ Example usage: >>> printfile myText.c ● printfile(fileName) > (newFileName)

○ This command will take a file name as an argument, and redirect the standard output to a new file using the redirection operator, >, (greater than symbol).  This functionality is provided by the “cat” command in most of the shells.

○ Example usage: >>> printfile myText.c > myTextNew.c

● footprint

○ This command will simply print up to maximum 15 commands that are executed before. The output will be the list of commands in which each line has a history number (starting with 1) and the corresponding command. This functionality is provided by the “history” command in most of the shells.

○ Example usage: >>> footprint

● listdir | grep “argument”

○ This command includes pipe between to processes. The output of the listdir command will be redirected to grep, and it will search for a pattern provided as the “argument”. Since you are already familiar with, grep command requires an input to search for a pattern, and that input should be provided by the output of the listdir command.

○ This command should be also available for “listdir -a” command.

○ Example usage: >>> listdir | grep “.c” ○ Example usage: >>> listdir -a | grep “txt” ● exit

○ Your shell process will be terminated after the user enters the exit command.

○ Example usage: >>> exit

 

Your shell implementation should only consist of the set of commands that are presented above. The combinations that are not discussed will not be tested or evaluated.

 

Example cases that will not be evaluated:

● printfile myProgram.c | grep “#include” command will not be tested

  • single grep command without pipe does not have to be supported
  • footprint | grep -i “txt” with a single pipe or footprint | grep -i “txt”| less with multiple pipes  will not be tested

The implementation details are up to you. You can use your own design as long as it provides the necessary functionalities.

 

 

  • project1-h0sahd.zip