{"id":26542733,"url":"https://github.com/bleckwolf25/beaudyshell","last_synced_at":"2025-10-11T02:17:07.964Z","repository":{"id":281895316,"uuid":"946256720","full_name":"BleckWolf25/BeaudyShell","owner":"BleckWolf25","description":"BeaudyShell is a unix-based shell that it's objective is to make shell accessible, modern, beautiful and a bit faster.","archived":true,"fork":false,"pushed_at":"2025-03-21T17:10:58.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T02:17:07.468Z","etag":null,"topics":["shell","terminal","terminal-app","terminal-emulator"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BleckWolf25.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-10T21:25:21.000Z","updated_at":"2025-04-16T01:09:33.000Z","dependencies_parsed_at":"2025-03-11T18:44:19.217Z","dependency_job_id":"7f221004-59d1-412b-bea3-e324764b4272","html_url":"https://github.com/BleckWolf25/BeaudyShell","commit_stats":null,"previous_names":["bleckwolf25/beaudyshell"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BleckWolf25/BeaudyShell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BleckWolf25%2FBeaudyShell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BleckWolf25%2FBeaudyShell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BleckWolf25%2FBeaudyShell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BleckWolf25%2FBeaudyShell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BleckWolf25","download_url":"https://codeload.github.com/BleckWolf25/BeaudyShell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BleckWolf25%2FBeaudyShell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005927,"owners_count":26083998,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","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":["shell","terminal","terminal-app","terminal-emulator"],"created_at":"2025-03-22T02:18:03.248Z","updated_at":"2025-10-11T02:17:07.937Z","avatar_url":"https://github.com/BleckWolf25.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BeaudyShell\n\nA fast, interactive Unix shell implementation written in C.\n\n## Features\n\n- Command execution using fork/exec\n- Pipes and file redirection (e.g., `cmd1 | cmd2`, `cmd \u003e file`, `cmd \u003c file`)\n- Built-in commands (`cd`, `exit`, `pwd`, `help`, `echo`)\n- Job control and background processes\n- Colorful prompt showing username, hostname, and current directory\n- Clean, modular codebase following modern C practices\n\n## Installation\n\n### macOS\n\n```bash\n# Option 1: Using the installer package\ncurl -O https://github.com/BleckWolf25/BeaudyShell/releases/latest/download/BeaudyShell.pkg\nsudo installer -pkg BeaudyShell.pkg -target /\n\n# Option 2: Building from source\ngit clone https://github.com/BleckWolf25/BeaudyShell.git\ncd BeaudyShell\nmkdir build \u0026\u0026 cd build\ncmake ..\ncmake --build .\nsudo cpack -G productbuild\nsudo installer -pkg BeaudyShell.pkg -target /\n```\n\n### Linux\n\n#### Debian/Ubuntu\n\n```bash\n# Option 1: Using the pre-built package\ncurl -O https://github.com/BleckWolf25/BeaudyShell/releases/latest/download/beaudyshell_0.1.0_amd64.deb\nsudo dpkg -i beaudyshell_0.1.0_amd64.deb\n\n# Option 2: Building from source\ngit clone https://github.com/BleckWolf25/BeaudyShell.git\ncd BeaudyShell\nmkdir build \u0026\u0026 cd build\ncmake ..\ncmake --build .\ncpack -G DEB\nsudo dpkg -i beaudyshell_0.1.0_amd64.deb\n```\n\n#### Red Hat/Fedora\n\n```bash\n# Option 1: Using the pre-built package\ncurl -O https://github.com/BleckWolf25/BeaudyShell/releases/latest/download/beaudyshell-0.1.0.x86_64.rpm\nsudo rpm -i beaudyshell-0.1.0.x86_64.rpm\n\n# Option 2: Building from source\ngit clone https://github.com/BleckWolf25/BeaudyShell.git\ncd BeaudyShell\nmkdir build \u0026\u0026 cd build\ncmake ..\ncmake --build .\ncpack -G RPM\nsudo rpm -i beaudyshell-0.1.0.x86_64.rpm\n```\n\n## Project Structure (Simplified)\n\n```zsh\n.\n├── include/        # Header files\n├── src/            # Source files\n├── docs/           # Documentation\n└── CMakeLists.txt  # Build configuration\n```\n\n## Development\n\n### Requirements\n\n- CMake 3.10 or higher\n- C compiler (GCC/Clang)\n- Make or Ninja build system\n\n### Building for Development\n\n```bash\nmkdir build \u0026\u0026 cd build\ncmake -DCMAKE_BUILD_TYPE=Debug ..\ncmake --build .\n```\n\n### Running Tests\n\n```bash\ncd build\nctest --output-on-failure\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbleckwolf25%2Fbeaudyshell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbleckwolf25%2Fbeaudyshell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbleckwolf25%2Fbeaudyshell/lists"}