{"id":20205778,"url":"https://github.com/raveriss/minishell","last_synced_at":"2026-05-09T02:35:47.416Z","repository":{"id":226762773,"uuid":"769578330","full_name":"raveriss/minishell","owner":"raveriss","description":"Minimalist C shell, simulating basic bash functionality. It manages command execution with support for history, redirects, pipes, environment variables and signals. This project allows us to deepen the understanding of processes, file descriptors,","archived":false,"fork":false,"pushed_at":"2024-03-17T15:21:37.000Z","size":615,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-20T23:41:21.869Z","etag":null,"topics":["bash","c-programming","commande-line","process-manager","shell","system-programming","unix"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raveriss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-09T13:28:15.000Z","updated_at":"2024-03-19T00:59:00.000Z","dependencies_parsed_at":"2024-03-13T01:27:18.503Z","dependency_job_id":"e40161c2-0674-43d3-a1d6-5394de3c49ba","html_url":"https://github.com/raveriss/minishell","commit_stats":null,"previous_names":["omisev/minishell","raveriss/minishell"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raveriss/minishell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2Fminishell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2Fminishell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2Fminishell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2Fminishell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raveriss","download_url":"https://codeload.github.com/raveriss/minishell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raveriss%2Fminishell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32805053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","c-programming","commande-line","process-manager","shell","system-programming","unix"],"created_at":"2024-11-14T05:19:07.742Z","updated_at":"2026-05-09T02:35:47.399Z","avatar_url":"https://github.com/raveriss.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# **Projet minishell**\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/ayogun/42-project-badges/raw/main/badges/minishelle.png\" alt=\"Badge du projet minishell\"\u003e\n\u003c/div\u003e\n\n##\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/Omisev/minishell/blob/main/Capture_minishell.png\" alt=\"Capture d'écran de minishell\"\u003e\n\u003c/div\u003e\n\n## Description\nCe projet a pour but de créer une version simplifiée du shell Unix. Cela inclut l'interprétation des commandes, la gestion de l'environnement, ainsi que l'exécution de commandes externes.\n\n## Tableau des Composants du Projet\n\n| Fichier              | Description                                                              | Responsabilité                                   | Statut    |\n|----------------------|--------------------------------------------------------------------------|--------------------------------------------------|-----------|\n| `main.c`             | Fichier principal, contient la logique de haut niveau                    | Initialisation, boucle d'interprétation          | Complet   |\n| `parser.c`           | Analyse les commandes entrées par l'utilisateur                          | Parsing de commandes                             | Complet   |\n| `executor.c`         | Exécute les commandes analysées                                           | Exécution de commandes                           | Complet   |\n| `env_manager.c`      | Gère les variables d'environnement                                        | Manipulation de l'environnement                  | Complet   |\n| `builtin_commands.c` | Implémente les commandes internes du shell (ex : cd, echo)               | Commandes internes                               | Complet   |\n| `utils.c`            | Fonctions utilitaires                                                     | Fonctions auxiliaires                            | Complet   |\n| `Makefile`           | Fichier pour compiler le projet                                           | Compilation                                      | Complet   |\n| `minishell.h`        | Fichier d'en-tête contenant les déclarations et les macros               | Déclarations                                     | Complet   |\n\n## Installation et Compilation\n```\ngit clone git@github.com:raveriss/minishell.git\ncd minishell\nmake\n```\n\n## Utilisation\n```\n./minishell\n```\n\n## Options\nAucune option disponible pour ce projet.\n\n## Caractéristiques\n- Interprétation des commandes\n- Gestion des variables d'environnement\n- Exécution de commandes externes\n- Implémentation de commandes internes\n- Gestion des signaux\n\n## Fonctions externes autorisées\n- malloc\n- free\n- read\n- write\n- open\n- close\n- fork\n- execve\n- wait\n- waitpid\n- signal\n\n## Ressources utilisées\n- [Notions essentielles du shell bash](https://fr.wikibooks.org/wiki/Programmation_Bash/Notions_essentielles_du_shell_bash)\n- [Liste des séquences d'échappement ANSI](https://stackoverflow.com/questions/4842424/list-of-ansi-color-escape-sequences)\n- [Appel système fork](https://www.geeksforgeeks.org/fork-system-call/)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraveriss%2Fminishell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraveriss%2Fminishell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraveriss%2Fminishell/lists"}