No description
dev | ||
include | ||
libft | ||
libtf | ||
src | ||
.gitignore | ||
header | ||
header.nocolor | ||
Makefile | ||
README.md |
minishell
the result of a group project at 42 school, made by me and BgNounours.
it's a very basic shell like sh or bash. it is not POSIX.
it supports:
>
,<
,>>
,<<
redirections|
pipes- environment variables and $?
- some built-in commands
compile and run
this project is for linux (it may also work on macOS i have no idea).
- in your terminal, run
make -v
. if you have acommand not found
error or equivalent, you will need to installmake
. on ubuntu / debian, run:
$ sudo apt install make
- clone the repository and cd inside it:
$ git clone https://gitea.zaclys.com/frzysk/42_minishell
$ cd 42_minishell
- build:
$ make
- run:
$ ./minishell