You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A minimal Unix shell implementation in C, designed to replicate the behavior of bash with essential features including command execution, pipes, redirections, environment variable management, and built-in commands.
This is a simple shell implementation in C created as part of an assignment. The shell supports basic commends like cd, help, input/output redirection, and some custom commends (add, mul, factorial,strrev etc.. ) that are executed from user-defined executable files.
A Unix-like shell implemented in C, featuring essential file operations, command history, and undo functionalities. Built with efficient data structures like linked lists and stacks.