From 3d122bd7fb96428ff1478ef32b316939ea4430ae Mon Sep 17 00:00:00 2001 From: p-w-rs <86083075+p-w-rs@users.noreply.github.com> Date: Wed, 14 Sep 2022 12:14:06 -0500 Subject: [PATCH] Update README.md --- 02-TeenyTinyShell/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/02-TeenyTinyShell/README.md b/02-TeenyTinyShell/README.md index 67bf2c4..7e534c0 100644 --- a/02-TeenyTinyShell/README.md +++ b/02-TeenyTinyShell/README.md @@ -6,7 +6,7 @@ A shell is a program that provides a traditional text-based interface to an oper There are many shells available for Linux, arguably the most popular is 'bash' which stands for the Bourne-Again SHell. The shell you will be developing for this lab will work similarly to 'bash' but will have fewer features. For more information about the 'bash' shell, you can check out the Wikipedia page: [https://en.wikipedia.org/wiki/Bash_(Unix_shell)](https://en.wikipedia.org/wiki/Bash_(Unix_shell)) -For this lab, you will be using the ```fork()``` system call to create child processes, then running ```exec()``` to run the commands specified by the user, finally waiting for the commands to finish executing using the wait() system call. Before you start, it might be helpful to read the 'man' pages for these system calls. +For this lab, you will be using the ```fork()``` system call to create child processes, then running ```exec()``` to run the commands specified by the user, finally waiting for the commands to finish executing using the ```wait()``` system call. Before you start, it might be helpful to read the 'man' pages for these system calls. - man 2 fork - man 2 exec @@ -200,4 +200,4 @@ Prepare a zip file with all submitted files and upload the file to Canvas per yo - (5 Points) Correct Submission - Followed submission instructions (e.g. IDE project files are not submitted) - (5 Points) Build - Code compiles without warnings or errors - (45 Points) Instructor Tests - Implementation passes all instructor test cases -- (5 Points) Memory Management - Program execution is free from memory leaks \ No newline at end of file +- (5 Points) Memory Management - Program execution is free from memory leaks