From ca07f150abe98398331373514f47e7f0b0529c91 Mon Sep 17 00:00:00 2001 From: Nikolay Tsanov <nik.tzanov@gmail.com> Date: Tue, 31 Mar 2020 20:49:41 +0100 Subject: [PATCH] Fix the README.md file --- README.md | 11 +++++++++-- main.c | 3 +++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ac6815d..43f36d0 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ -1. Cntr + D - Fix memory leak -2. Empty line with exit +Authors: Krasimir Balchev, Stefan Costica, Nikolay Tsanov, Mihail Hristov, Enrique MartÃn Ocaña +Group Number: 18 +Purpose: A simple shell implemented in C, it supports the built-in UNIX commands, history invocations, aliases (recursive aliases are possible). +Language: C + +NOTE: To run the shell, you can simple open a terminal and type `./run.sh` which will compile and automatically run the simple shell. + Alternatively, you can use the Makefile that comes with the project by running `make` in the terminal. + +University of Strathclyde 2020 \ No newline at end of file diff --git a/main.c b/main.c index 3dcd5e8..96ce688 100644 --- a/main.c +++ b/main.c @@ -3,6 +3,9 @@ * Group Number: 18 * Purpose: A simple shell implemented in C, it supports the built-in UNIX commands, history invocations, aliases (recursive aliases are possible). * Language: C + * + * NOTE: To run the shell, you can simple open a terminal and type `./run.sh` which will compile and automatically run the simple shell. + * Alternatively, you can use the Makefile that comes with the project by running `make` in the terminal. */ #include <stdio.h> -- GitLab