From 3c645727917f34c41de3d133112f48f3ac04f215 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Fri, 19 Apr 2024 11:23:25 -0500 Subject: [PATCH] Make a more descriptive readme --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e59313..aafd9a2 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ -# shellfish +# Shellfish -Examples demonstrating how command-line shells implement features. +## About + +Self-contained examples demonstrating how shells implement common features. +Every example can be built and run, however they are not meant to show how to +write production-ready software. They only show how the important functions +work, and not how to do things like handle and recover from errors. + +## Recommended Order + + 1. [exec.c](exec.c) + 2. [redirection.c](redirection.c)