From 3d6b1c5e2d7471eeade12cc5b283524fa0d44bb9 Mon Sep 17 00:00:00 2001 From: Vidhi Katkoria Date: Sat, 27 Oct 2018 17:04:45 +0530 Subject: [PATCH] Updated the description and added references title --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f76eff..ff056cc 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 seconds * mystop.c Spins for seconds and sends SIGTSTP to itself * myint.c Spins for seconds and sends SIGINT to itself + +### References +1. [Job Control(Unix) Wikipedia](https://en.wikipedia.org/wiki/Job_control_(Unix))