Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 439 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 439 Bytes

minishell

Synopsis

A minimum viable version of a shell. Project part of the Unix branch at 42 school.

Motivation

Learn child process management and discover what's going on under the hood of a shell.

Installation

make

./minishell

Which features are done

  • PATH management
  • absolute and relative paths
  • builtins
    • echo
    • cd
    • pwd
    • env
    • setenv (from csh builtin)
    • unsetenv (from csh builtin)
    • exit