Hi everyone, i have just coded a shell with the following goal:
In Unix-like system shells, you can hang the & character at the end of a command line to indicate that the command should be run in the background: i.e., the shell should not crash pending the termination of the command, but must continue parallel to the command and display the next prompt immediately. Implemented in dsh the execution of a command in the background through the character &.
I would love to receive feedbacks from you guys. I have no experience on this kind of things so if my program has any type of error or bug, please lemme know it.
Thank you guys!