Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 437 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 437 Bytes

BAsic SHell In C (BASHIC)

Usage

gcc src.c -o bashic
./bashic
  • history to display command history
  • !N to execute the Nth command in history
  • !! to execute the last command
  • exit to terminate the shell

Specs

  • cd
  • Colorized prompt
  • Children are sent SIGINT (not SIGKILL) when the shell terminates
  • Command history

Scrots

alt text

Later

  • scripting?
  • multithreading?