Low-Level Programming and Algorithm Project assigned by Holberton School.
Required files:
- main.c
- helperFunc.c
- printFunc.c
- specialFunc.c
- stringFunc.c
- stringFunc2.c
- memoryFunc.c
- customFunc.c
- history.c
- shellHeader.h
What things you need to install the program and how to install them:
GCC:
sudo apt-get install gcc
A step by step series of required commands need to get our HSH running.
##Compiling Complile the code:
make
or
Manually compile:
gcc shellHeader.h memoryFunc.c stringFunc.c stringFunc2.c customFunc.c printFunc.c helperFunc.c specialFunc.c history.c main.c -o hsh
##Executing Run hsh in interactive mode:
./hsh
Expected Result:
$
or
Run hsh in non-interactive mode:
echo **cmd** | ./hsh
-
Anoop Macharla (https://github.com/amacharla)
-
Minas Anton (https://github.com/MinasA1)
Refer to Man Page
./man_1_simple_shell
- https://intranet.hbtn.io/concepts/64
- Batch 3 Peers