Coder Social home page Coder Social logo

minishell's Introduction

minishell

MiniShell is a simple shell created as a learning project to understand processes and file descriptors in C programming language.

It's a recreation of a tiny bit of bash shell functionality.

Table of Contents

  1. Introduction

  2. Features

  3. Getting Started

  4. Builtins

  5. Contributors

  6. Contributing

Introduction

The shell is a command-line interpreter that offers a user interface for the operating system's services.

MiniShell replicates some of the basic functionalities of a Unix-like command-line user interface.

Features

MiniShell supports the following features:

  • Displaying a prompt when waiting for a new command.

  • Executing commands with their parameters.

  • Handling absolute and relative paths for commands.

  • Redirections: < (input), > (output), >> (output in append mode), and << (input until a delimiter).

  • Pipes (|): the output of each command in the pipeline is connected to the input of the next command via a pipe.

  • Environment variables expansion: $ followed by a sequence of characters.

  • Special variable expansion: $? (the exit status of the most recently executed foreground pipeline).

  • Ctrl-C, Ctrl-D, and Ctrl-\ signals handling.

  • Built-in commands: echo, cd, pwd, export, unset, env, exit.

Getting Started

To compile, run make. This will create an executable named minishell.

Start the program by running:

./minishell

Builtins

MiniShell implements the following builtins:

echo with option -n

cd with only a relative or absolute path

pwd with no options

export with no options

unset with no options

env with no options or arguments

exit with no options

Contributors

This project was completed by:

Kheireddine Fergani @khirooo

Robel Kedida @robelkedida

Contributing

Contributions are welcome. Please open an issue or submit a pull request for any bugs/improvements.

minishell's People

Contributors

rkedida avatar

Watchers

 avatar

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.