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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mini-Unix-Shell
A simple Unix shell program that supports job control. To become more familiar with the concepts of process control and signaling.
A simple Unix shell program that supports job control. To become more familiar with the concepts of process control and signaling. This helps you understand how foreground and background jobs are controlled.

## Files:

Expand All @@ -18,3 +18,6 @@ A simple Unix shell program that supports job control. To become more familiar w
* mysplit.c Forks a child that spins for <n> seconds
* mystop.c Spins for <n> seconds and sends SIGTSTP to itself
* myint.c Spins for <n> seconds and sends SIGINT to itself

### References
1. [Job Control(Unix) Wikipedia](https://en.wikipedia.org/wiki/Job_control_(Unix))