A simple shell for the "minishell" 42's project, named duckshell :D
Thanks to @marzianegro for prettifying my map :)
This shell uses 'readline', so the library has to be installed. For simple testing you can build the image with Docker.
To pull files
git clone [email protected]:skyheis/42_minishell.git
To compile the duckshell
$ make
To load just run the binary
$ ./minishell
You can download the image and run in docker with the following command
$ docker run -it --name duckshell --rm skyheis/duckshell:latest
Or you can build the image and run with the following commands
$ docker build -t duckshell .
$ docker run -it --name duckshell --rm duckshell
See LICENSE