minishell.demo.mp4
[Comparison video between Minishell and Bash]
After cloning, open a terminal in the project folder and type "make" to create a minishell file.
Once you've created your minishell file, run it !!
minishell is a miniaturized version of a bash.
You can use the following features !!
- You can use Linux commands with options. ex) ls, wc, grep ...
- You can use builtin commands. ex) echo, pwd, cd ...
- You can use working history.
- You can use redirections(<, >, <<, >>) and pipes(|).
- You can check exit status with "$?". ex) echo $?
- You can send signals by pressing the ctrl+c, ctrl+d, ctrl+\. And this works exactly the same as it does in bash.