A simple UNIX command interpreter.
short summary of a shell here
Respond to text commands and function calling
simple_shell
- Display a prompt and wait for the user to type a command. A command line always ends with a new line.
- The prompt is displayed again each time a command has been executed.
- The command lines are simple, no semicolons, no pipes, no redirections or any other advanced features.
- The command lines are made only of one word. No arguments will be passed to programs.
- If an executable cannot be found, print an error message and display the prompt again.
- Handle errors.
- Handle the “end of file” condition
Ctrl+D
insert examples of use here from exercises
we can even do checkbox style
using code block formatting
advance tasks we haven't gotten up to
Holberton’s Sandbox
Requirements:
Windows 10
Chrome 77.0.3865.120 or superior
16GB Memory
Everything you need to know to start coding your own shell
Basic writing and formatting syntax