File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Key features include:
2020## Installation 🛠️
2121
2222### Prerequisites
23- - GCC compiler
23+ - C Compiler ( ` cc ` / ` gcc ` / ` clang ` )
2424- GNU Make
2525- readline library (install with ` brew install readline ` on macOS or ` sudo apt-get install libreadline-dev ` on Ubuntu)
2626
@@ -57,9 +57,7 @@ Here's how Minishell compares to Bash in various scenarios:
5757| ` echo "Hello $USER" ` | ` Hello username ` | ` Hello username ` | ✅ |
5858| ` ls > file.txt ` | Creates file | Creates file | ✅ |
5959| ` cat < file.txt ` | File contents | File contents | ✅ |
60- | ` sleep 5 & Ctrl-C ` | New prompt | New prompt | ✅ |
6160| ` echo -n "No newline" ` | No newline | No newline | ✅ |
62- | ` cd /tmp && pwd ` | ` /tmp ` | ` /tmp ` | ✅ |
6361| ` export TEST=value ` | Sets variable | Sets variable | ✅ |
6462| ` unset TEST ` | Removes variable | Removes variable | ✅ |
6563| ` exit 42 ` | Exits with 42 | Exits with 42 | ✅ |
You can’t perform that action at this time.
0 commit comments