Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# MyShell
------------------------

This project implements a primitive UNIX shell with basic functions including:
A mini-shell that supports majority of Unix terminal shell’s functionalities implemented with C++.

The following basic functions are implemented:

1. internal commands such as **jobs, cd, exit**.
2. external program execution such as **cat textfile | gzip -c | tail -n 10**.
1. internal commands, e.g. **jobs, cd, exit**.
2. external program execution, e.g. **cat textfile | gzip -c | tail -n 10**.

The main difficulty is the implementation of *job control*. Core components are reviewied in the conceptions section.
*job controls* was the most difficult implementation in this project. See the **conceptions** section for more details on core components implementation.

## Installation
To compile the codes:
Expand Down