https://github.com/zak4b/minishell
A minimalist unix shell
https://github.com/zak4b/minishell
42 42projects 42school shell
Last synced: 5 months ago
JSON representation
A minimalist unix shell
- Host: GitHub
- URL: https://github.com/zak4b/minishell
- Owner: Zak4b
- Created: 2025-01-28T17:40:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-18T13:49:37.000Z (over 1 year ago)
- Last Synced: 2025-05-22T07:55:27.011Z (about 1 year ago)
- Topics: 42, 42projects, 42school, shell
- Language: C
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minishell
Minishell is a project from 42 school that involves recreating a minimalist shell in C.
## Features
- Execute simple commands with relative and absolute paths
- Handling pipes (`|`)
- Redirections (`<<`, `<`, `>`, `>>`)
- Handling processes and signals (`Ctrl+C`, `Ctrl+D`, `Ctrl+\`)
- Built-in commands (`echo`, `cd`, `pwd`, `export`, `unset`, `env`, `exit`)
## Installation
1. Clone the repository:
```bash
git clone https://github.com/Zak4b/minishell.git
cd minishell
```
3. Compile the project:
```bash
make
```
4. Launch the shell:
```bash
./minishell
```
## Usage
Once launched, Minishell displays a prompt. You can use standard shell commands.
## Authors
- rsebasti - [GitHub](https://github.com/Dak-Ore)
- asene - [GitHub](https://github.com/Zak4b)