Giter Site home page Giter Site logo

my-shell's Introduction

My-Shell

Introduction

This repository contains my C code for making a Shell from scratch.

How to Run

compile the myproject.c file in the bash using-
gcc -o shell myproject.c then ./shell

Working

Shell is basically a loop: it repeatedly prints a prompt , parses the input, executes the command specified on that line of input, and waits for the command to finish. This is repeated until the user types "quit" or ends their input.

The fork() system call creates a new process. After this point, two processes will be executing within your code. You will be able to differentiate the child from the parent by looking at the return value of fork; the child sees a 0, the parent sees the pid of the child. For this project, we are using execvp().If execvp() is successful, it will not return; if it does return, there was an error (e.g., the command does not exist).

To implement cd command chdir() in-built C function has been used.

Feature added by me

Feature of checking the history, which I implemented by storing the previously performed commands in an array.It will show upto last 10 commmands given to the shell.

It also contains the original feature of repeating last performed command by giving input- !!

Example

acm project acm project 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.