Skip to content

Commit 916a5cb

Browse files
authored
Update README.md
1 parent 3d9e150 commit 916a5cb

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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 ||

0 commit comments

Comments
 (0)