Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 42 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,31 @@ Built in collaboration: [@Letícia Sampietro](https://github.com/lesampietro) an

## 📂 How to Run

### Clone the repository:
### Prerequisites:
Before building the project, make sure you have the readline library installed:

**Ubuntu/Debian:**
```bash
sudo apt-get update
sudo apt-get install libreadline-dev
```

**macOS:**
```bash
brew install readline
```
bash

### Clone and build:
```bash
git clone https://github.com/LilianMS/MiniShell.git
cd minishell
cd MiniShell
make
```

### Run the shell:
```bash
./minishell
```
---
<p align="right">
<a href="#-minishell">🇺🇸</a> | <a href="#-minishell-em-português">🇧🇷</a>
Expand Down Expand Up @@ -116,10 +134,28 @@ Desenvolvido em colaboração: [@Letícia Sampietro](https://github.com/lesampie

## 📂 Como executar

### Clonar o repositório:
### Pré-requisitos:
Antes de compilar o projeto, certifique-se de ter a biblioteca readline instalada:

**Ubuntu/Debian:**
```bash
sudo apt-get update
sudo apt-get install libreadline-dev
```

**macOS:**
```bash
brew install readline
```
bash

### Clonar e compilar:
```bash
git clone https://github.com/LilianMS/MiniShell.git
cd minishell
cd MiniShell
make
```

### Executar o shell:
```bash
./minishell
```