{"id":18406558,"url":"https://github.com/brian-xu-vlt/minishell_42","last_synced_at":"2026-04-19T19:32:29.902Z","repository":{"id":106266241,"uuid":"292297898","full_name":"brian-xu-vlt/MINISHELL_42","owner":"brian-xu-vlt","description":"We recreated a shell from scratch, with a minishell tester included, using only our own library (libft) and a limited range of external functions. ","archived":false,"fork":false,"pushed_at":"2021-01-04T13:25:59.000Z","size":10573,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-12T20:56:43.035Z","etag":null,"topics":["42","42born2code","42projects","42school","bash","c","ecole42","linux","minishell","minishell-test","minishell-tester","shell","termcaps","ubuntu","vector","xubuntu"],"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/brian-xu-vlt.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":"2020-09-02T13:56:09.000Z","updated_at":"2023-01-17T16:43:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"256cb1d6-50c4-4e92-8790-9a30ad19997e","html_url":"https://github.com/brian-xu-vlt/MINISHELL_42","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brian-xu-vlt/MINISHELL_42","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brian-xu-vlt%2FMINISHELL_42","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brian-xu-vlt%2FMINISHELL_42/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brian-xu-vlt%2FMINISHELL_42/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brian-xu-vlt%2FMINISHELL_42/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brian-xu-vlt","download_url":"https://codeload.github.com/brian-xu-vlt/MINISHELL_42/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brian-xu-vlt%2FMINISHELL_42/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32020526,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"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":["42","42born2code","42projects","42school","bash","c","ecole42","linux","minishell","minishell-test","minishell-tester","shell","termcaps","ubuntu","vector","xubuntu"],"created_at":"2024-11-06T03:09:35.731Z","updated_at":"2026-04-19T19:32:29.884Z","avatar_url":"https://github.com/brian-xu-vlt.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MINISHELL_42\n\n## Team\n\n#### [lfallet](https://github.com/lilafallet)\n\n#### [bvalette](https://github.com/42f)\n\n## Project\n\nWe have recreated a shell from scratch, with a minishell tester included, using only our own library (libft) and a limited range of external functions.\n\nMinishell is compatible with macos and linux.\nTester is compatible with linux only, tested on 42's virtual machine.\n\n## Building\n\n``$\u003e git clone https://github.com/42f/MINISHELL_42.git ``\n\n``$\u003e cd MINISHELL_42``\n  \nTo use Minishell:\n``$\u003e make \u0026\u0026 ./minishell``\n\nTo run tester:\n``$\u003e make tester``\n\n\nIncludes a home made minishell tester:\n\n![](images/screenshot.gif)\n\n## Features\n\n|Features   |\n|:---------|\n|Display prompt|\n|Fetch and execute binaries|\n|Logic `\u0026\u0026` `\\|\\|`|\n|Single and double quotes management|\n|Files redirections `\u003e\u003e` `\u003e` `\u003c` (except file descriptor agregations)|\n|Pipes|\n|Environment variables|\n|Internal variables|\n|Expansion|\n|`Ctrl + D`|\n|`Ctrl + \\`|\n|`Ctrl + C`|\n|Signal catching|\n\n|Builtins   |\n|:---------|\n|echo: with -n option|\n|cd with relative and absolute path: with `-` options|\n|pwd: no option|\n|export: no option|\n|env: no option|\n|unset: no option|\n|set: no option|\n|exit: with arguments|\n|history: no option|\n\n## Line Edition\n\n|Shortcuts   |Description              |\n|:---------:|:------------------------|\n`↑/↓`\t\t|Navigate on the command history\n`shift + →`\t|Select while moving right\n`shift + ←`\t|Select while moving left\n`shift + ↑`\t|Copy selection\n`ctrl + ↑`\t|Cut selection\n`shift + ↓`\t|Past clipboard\n`home`\t\t|Move cursor at the commande line's starting point\n`end`\t\t|Move cursor at the command line's end\n`ctrl + →`\t|Move one word right\n`ctrl + ←`\t|Move one word left\n`shift + home/end`\t|Select up to the beginning/end of the command line\n`shift + ctrl +  →/←`\t|Select one word at a time\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrian-xu-vlt%2Fminishell_42","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrian-xu-vlt%2Fminishell_42","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrian-xu-vlt%2Fminishell_42/lists"}