saminstein / simple_shell

A simple UNIX command interpreter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SIMPLE SHELL

This project is the most important project in the first trimester of alx programming school. It is a practical of everything learnt about System engineering & Devops and also C low-level programming langauge. We built our on shell

DESCRIPTION

The shell is a command-line interpreter or shell that provides a command line user interface for unix-like operating systems. The shell can work in both an interactive mode and a non-interactive, it is used by the operating system to control the execution of the system using shell scripts.

INSTALLATION

You can install the simple shell by cloning this repo:

$ git clone https://github.com/saminstein/simple_shell.git

Next you can compile the files with this command:

$ gcc -Wall -Werror -Wextra -pedantic *.c -o hsh

OR:

$ make

finally you can run the Shell with:

./hsh

BUILT WITH

This project was built and development with:

  • C programming language
  • Ubuntu 14.04 LTS
  • Visual Studio Code

AUTHOR

  • Samuel Shielu: Development and documentation

About

A simple UNIX command interpreter


Languages

Language:C 98.5%Language:Makefile 1.5%