Skip to content

Latest commit

 

History

History
90 lines (70 loc) · 1.46 KB

File metadata and controls

90 lines (70 loc) · 1.46 KB

ShellX

'Lets Command With Your Fingers'


Table of Contents

[TOCM]

[TOC]

Features


Shell with following features

I/O Redirection Interactive Background Simple Pipes Mix

Internal Commands
  • cd [DIRECTORY PATH]
  • exit [OPTIONAL NUMBER]

Tech


ShellX is completely written in C

Installation


ShellX requires GCC, GDB and make to run.

Install all dependencies before installation

Dependencies Installation (for debian based linux)
  1. open terminal
  2. run the following commands on terminal
sudo apt update -y
sudo apt upgrade -y
sudo apt install make -y
sudo apt install gdb -y
sudo apt install gcc -y
ShellX Installation
  1. extract the zip
  2. open the terminal in the extracted folder
  3. run the following command on terminal
make

RUN


Execute either way

Enter following commands on terminal

One Way
make run
Another Way
./bin/main

Additional Command


  • To remove the previous build
make clean

END