Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 327 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 327 Bytes

Simple-Shell

A simple shell supports:

  1. Execution of any Linux built-in command (e.g., ls) with basic error handling.

  2. Three shell-specific commands: gofolder(cd), log(history), and bye(exit).

  3. Basic signal handling: i.e., a user cannot exit the shell simply by typing ctrl-c.

  4. Basic command chaining: && and ||.