https://github.com/dplocki/codecrafters-shell-csharp
The C# solutions to the "Build Your Own Shell" Challenge
https://github.com/dplocki/codecrafters-shell-csharp
codecrafters codecrafters-challenge
Last synced: over 1 year ago
JSON representation
The C# solutions to the "Build Your Own Shell" Challenge
- Host: GitHub
- URL: https://github.com/dplocki/codecrafters-shell-csharp
- Owner: dplocki
- Created: 2025-01-05T07:56:12.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-19T15:12:56.000Z (over 1 year ago)
- Last Synced: 2025-01-24T01:44:05.591Z (over 1 year ago)
- Topics: codecrafters, codecrafters-challenge
- Language: C#
- Homepage: https://app.codecrafters.io/courses/shell
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🏗️ Build Your Own Shell Challenge
This is a repository for C# solutions to the ["Build Your Own Shell" challenge](https://app.codecrafters.io/courses/shell/overview).
## 📋 Introduction
Welcome to the Build your own Shell challenge!
A shell is a command-line interface that executes commands and manages processes. In this challenge, you'll build your own POSIX compliant shell that's capable of interpreting shell commands, running external programs and builtin commands like cd, pwd, echo and more.
Along the way, you'll learn about shell command parsing, REPLs, builtin commands, and more.
## 🛠️ Run
1. Ensure you have `dotnet (9.0)` installed locally
2. Run `./your_program.sh` to run the program