Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 362 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 362 Bytes

termmminal

Basic Shell written in C for BSM309 (Operating Systems) homework

It has:

  • Prompt (with no directory navigation)
  • Run programs
  • Input redirection ( < )
  • Output redirection ( > )
  • Background processes ( & )
  • Pipe ( | )
  • Commands with and ( program && program2 ) or ( program || program2 )
  • Sub-command execution ( command; (sub-command;) )