No followers yet
Once you ship this you can't edit the description of the project, but you'll be able to add more devlogs and re-ship it as you add new features!
DarkShell Devlog #1 19/06/2025
At this point DarkShell has basic functionality. It features simple commands like ls,cd,pwd,exit,clear. More complicated commands are handled externally, however only simple commands that return instantly work e.g. fastfetch.
I am currently working on piping commands, as I am writing this I have successfully made the input split into a vector based on where the pipe is (supports multiple). These commands will then be handled externally and there output will be the input for the next command, I don't know how im going to achieve this. Most likely will be with stdin/stdout.