X

Minishell

Minimalist shell in C

A simple C shellthat is perfect for users who want a simple, efficient shell write in C.

Compilation and Execution

To compile, open a terminal and navigate to the root directory. Then, run the make command. Then run ./minishell

To quit type ctrl-q

Features

  • Displays the command history.
  • Redirections (>, <, >>, <<)
  • Pipes (|)
  • Builtins (echo, cd, pwd, export, unset, env, exit)
  • Environment variable handling

Demo

Tour of simple command

You can use ";" to join multiple command

Minishell

Simple bash clone

Show