Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.
/ Vshell Public archive

A very basic Shell proof of concept in C

Notifications You must be signed in to change notification settings

BSoDium/Vshell

Repository files navigation

Vshell

A very basic Shell proof of concept in C. Use with caution, everything isn't meticulously tested.

Supported internal commands

  • fg
  • bg
  • stop
  • jobs
  • exit
  • ctrl + c / ctrl + z

Additional features

  • | (pipes)
  • </> operators
  • & (background jobs)

Compilation & execution

Pretty straightforward because there's no makefile
Edit : there is one now

  • using make
    cd Vshell
    make
    ./vshell
  • the old way (using a standard compiler such as gcc)
    cd Vshell
    gcc *.c -o vshell
    ./vshell

About

A very basic Shell proof of concept in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published